From 4ec68e612e5d6670a154677b4c8914f22153b122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Sun, 14 Dec 2014 19:28:28 +0100 Subject: Add kconfig_parser kconfig_parser is placed to new folder tree. In folder "programs" will be all programs. Files in folder programs/src/kconfig/kconfig are taken from kernel v3.18-rc3. In future, they should be updated if new changes will be added to kernel. --- programs/src/kconfig/boolexp.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 programs/src/kconfig/boolexp.h (limited to 'programs/src/kconfig/boolexp.h') diff --git a/programs/src/kconfig/boolexp.h b/programs/src/kconfig/boolexp.h new file mode 100644 index 0000000..f03fc33 --- /dev/null +++ b/programs/src/kconfig/boolexp.h @@ -0,0 +1,27 @@ +#ifndef _BOOLEXP_H_ +#define _BOOLEXP_H_ + +#include +#include "symlist.h" +#include "kconfig/lkc.h" + +enum boolexp_type { + BE_OR, BE_AND, BE_NOT, BE_LEAF +}; + +struct boolexp; +union boolexp_data { + struct boolexp *be; + unsigned int id; +}; + +struct boolexp { + enum boolexp_type type; + union boolexp_data left, right; +}; + +struct boolexp *copy_kconfig_dep(struct symlist *sl, struct expr *expr); +struct boolexp *boolexp_cnf(struct boolexp *be); +void boolexp_print(struct boolexp *be); + +#endif /* _BOOLEXP_H_ */ -- cgit v1.2.3