]> rtime.felk.cvut.cz Git - linux-conf-perf.git/blob - scripts/permute_conf/permutelist.h
Add database initialisation check
[linux-conf-perf.git] / scripts / permute_conf / permutelist.h
1 #include <stdlib.h>
2 #include <stdbool.h>
3 #include <kconfig/lkc.h>
4
5 #ifndef _PERMUTELIST_H_
6 #define _PERMUTELIST_H_
7
8 struct permutelist {
9     struct menu *permute;
10     size_t size, pos;
11 };
12
13 void permutelist_add(struct menu *m);
14 void permutelist_remove(struct menu *m);
15 bool permutelist_is_permute(struct menu *m);
16
17 #endif /* _PERMUTELIST_H_ */