Lines Matching full:aconfig
20 typedef struct AConfig AConfig;
22 struct AConfig
24 AConfig* next;
25 AConfig* first_child;
26 AConfig* last_child;
32 extern void aconfig_load(AConfig* root, char* data);
35 extern int aconfig_load_file(AConfig* root, const char* path);
38 extern int aconfig_save_file(AConfig* root, const char* path);
41 extern AConfig* aconfig_node(const char *name, const char *value);
44 extern AConfig* aconfig_find(AConfig *root, const char *name);
47 extern void aconfig_set(AConfig *root, const char *name, const char *value);
52 extern int aconfig_bool (AConfig *root, const char *name, int _default);
53 extern unsigned aconfig_unsigned(AConfig *root, const char *name, unsigned _default);
54 extern int aconfig_int (AConfig *root, const char *name, int _default);
55 extern const char* aconfig_str (AConfig *root, const char *name, const char *_default);