]> git.sur5r.net Git - i3/i3/blob - table.h
Bugfix: Don’t crash if the user didn’t click into a client
[i3/i3] / table.h
1 #include <stdbool.h>
2 #include "data.h"
3
4 #ifndef _TABLE_H
5 #define _TABLE_H
6
7 #define CUR_CELL (table[current_col][current_row])
8
9 extern Container ***table;
10 extern struct table_dimensions_t table_dims;
11
12 void init_table();
13 void expand_table_rows();
14 void expand_table_cols();
15 bool cell_exists(int col, int row);
16
17 #endif