]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - scripts/permute_conf/menudata.h
Rename program permute to permute_conf
[linux-conf-perf.git] / scripts / permute_conf / menudata.h
1 #include <stdlib.h>
2 #include <stdbool.h>
3 #include <stdio.h>
4
5 #include <kconfig/lkc.h>
6
7 #ifndef _MENUDATA_H_
8 #define _MENUDATA_H_
9
10 struct menudata {
11     bool permute;
12     bool subpermute;
13 };
14
15 struct menudata *menudata_new(void);
16 void menudata_set_permute(struct menu *m, bool perm);
17 void menudata_set_all_permute(struct menu *m, bool perm);
18 void menudata_cal(struct menu *m);
19
20 #endif /* _MENUDATA_H_ */