EMILE/libconfig/libconfig.h
2007-08-26 09:16:23 +00:00

17 lines
1.0 KiB
C

/*
*
* (c) 2007 Laurent Vivier <Laurent@lvivier.info>
*
*/
extern char *config_read_word(char *line, char **next);
extern int config_get_next_property(char *configuration, int index, char *name, char *property);
extern int config_get_indexed_property(char *configuration, char *index_name, char *index_property, char *name, char *property);
extern int config_get_property(char *configuration, char *name, char *property);
extern void config_remove_property(char *configuration, char *name);
extern void config_set_property(char *configuration, char *name, char *property);
extern void config_set_indexed_property(char *configuration, char *index_name, char *index_property, char *name, char *property);
extern void config_remove_indexed_property(char *configuration, char *index_name, char *index_property, char *name);
extern int config_find_indexed_property(char *configuration, char *index_name, char *index_property, char *name, char *property);
extern int config_find_entry(char *configuration, char *name, char *property);