5 extern char **main_argv;
6 extern struct config *config;
8 extern int config_empty_ok;
14 struct config * config_get(void);
15 void config_destroy(struct config *this_);
16 int config_get_attr(struct config *this_, enum attr_type type, struct attr *attr, struct attr_iter *iter);
17 int config_set_attr(struct config *this_, struct attr *attr);
18 int config_add_attr(struct config *this_, struct attr *attr);
19 int config_remove_attr(struct config *this_, struct attr *attr);
20 struct attr_iter *config_attr_iter_new(void);
21 void config_attr_iter_destroy(struct attr_iter *iter);
22 struct config *config_new(struct attr *parent, struct attr **attrs);
23 /* end of prototypes */