11 lines
127 B
C
11 lines
127 B
C
#ifndef CONFIG_H_
|
|
#define CONFIL_H_
|
|
|
|
typedef struct config_t {
|
|
int hide_on_modifier;
|
|
} config_t;
|
|
|
|
config_t config;
|
|
|
|
#endif
|