#ifndef CONFIG_PARSER_H
#define CONFIG_PARSER_H
struct config_module_parser {
void *settings;
};
extern struct config_module_parser *config_module_parsers;
extern struct config_filter_context *config_filter;
ATTR_NULL(3);
void config_parse_load_modules(void);
const char *const *modules,
const struct setting_parser_info *root)
ATTR_NULL(2);
void config_parser_deinit(void);
#endif