diff options
author | Karel Kočí <cynerd@email.cz> | 2015-01-14 12:39:50 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-01-14 12:39:50 +0100 |
commit | afeddb02f4482efce98a9a411c04d31daeb9aee4 (patch) | |
tree | 02353e650321f7115e3cb113681c8fef28833f05 /programs/src/kconfig_parser/output.h | |
parent | 48a732fecf66799a4eba0194006f8726306d5e45 (diff) | |
download | linux-conf-perf-afeddb02f4482efce98a9a411c04d31daeb9aee4.tar.gz linux-conf-perf-afeddb02f4482efce98a9a411c04d31daeb9aee4.tar.bz2 linux-conf-perf-afeddb02f4482efce98a9a411c04d31daeb9aee4.zip |
Output folder added to kconfig_parser
Also kconfig folder in programs/src is renamed to kconfig_parser
Diffstat (limited to 'programs/src/kconfig_parser/output.h')
-rw-r--r-- | programs/src/kconfig_parser/output.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/programs/src/kconfig_parser/output.h b/programs/src/kconfig_parser/output.h new file mode 100644 index 0000000..a4686e3 --- /dev/null +++ b/programs/src/kconfig_parser/output.h @@ -0,0 +1,14 @@ +#ifndef _OUTPUT_H_ +#define _OUTPUT_H_ + +#include <stdlib.h> +#include <stdio.h> +#include "symlist.h" + +#define DEFAULT_RULES_FILE "rules" +#define DEFAULT_SYMBOL_MAP_FILE "symbol_map" + +void fprint_rules(struct symlist *sl, char* output); +void fprint_symbol_map(struct symlist *sl, char* output); + +#endif /* _OUTPUT_H_ */ |