generic: 6.1, 6.6: remove patch which breaks WAN on MT7621
[openwrt/openwrt.git] / scripts / config / lkc_proto.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #include <stdarg.h>
3
4 /* confdata.c */
5 void conf_parse(const char *name);
6 int conf_read(const char *name);
7 int conf_read_simple(const char *name, int);
8 void conf_reset(int def);
9 int conf_write_defconfig(const char *name);
10 int conf_write(const char *name);
11 int conf_write_autoconf(int overwrite);
12 void conf_set_changed(bool val);
13 bool conf_get_changed(void);
14 void conf_set_changed_callback(void (*fn)(void));
15 void conf_set_message_callback(void (*fn)(const char *s));
16
17 /* symbol.c */
18 extern struct symbol * symbol_hash[SYMBOL_HASHSIZE];
19
20 struct symbol * sym_lookup(const char *name, int flags);
21 struct symbol * sym_find(const char *name);
22 void print_symbol_for_listconfig(struct symbol *sym);
23 struct symbol ** sym_re_search(const char *pattern);
24 const char * sym_type_name(enum symbol_type type);
25 void sym_calc_value(struct symbol *sym);
26 enum symbol_type sym_get_type(struct symbol *sym);
27 bool sym_tristate_within_range(struct symbol *sym,tristate tri);
28 bool sym_set_tristate_value(struct symbol *sym,tristate tri);
29 tristate sym_toggle_tristate_value(struct symbol *sym);
30 bool sym_string_valid(struct symbol *sym, const char *newval);
31 bool sym_string_within_range(struct symbol *sym, const char *str);
32 bool sym_set_string_value(struct symbol *sym, const char *newval);
33 bool sym_is_changeable(struct symbol *sym);
34 struct property * sym_get_choice_prop(struct symbol *sym);
35 const char * sym_get_string_value(struct symbol *sym);
36
37 const char * prop_get_type_name(enum prop_type type);
38
39 /* preprocess.c */
40 enum variable_flavor {
41 VAR_SIMPLE,
42 VAR_RECURSIVE,
43 VAR_APPEND,
44 };
45 void env_write_dep(FILE *f, const char *auto_conf_name);
46 void variable_add(const char *name, const char *value,
47 enum variable_flavor flavor);
48 void variable_all_del(void);
49 char *expand_dollar(const char **str);
50 char *expand_one_token(const char **str);
51
52 /* expr.c */
53 void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken);