2007-08-25 21:31:10 +00:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* (c) 2007 Laurent Vivier <Laurent@lvivier.info>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-09-08 23:09:14 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2007-08-25 21:31:10 +00:00
|
|
|
extern char *config_read_word(char *line, char **next);
|
2007-09-08 23:09:14 +00:00
|
|
|
extern int config_get_next_property(int8_t *configuration, int index, char *name, char *property);
|
|
|
|
extern int config_get_indexed_property(int8_t *configuration, char *index_name, char *index_property, char *name, char *property);
|
|
|
|
extern int config_get_property(int8_t *configuration, char *name, char *property);
|
|
|
|
extern int config_remove_property(int8_t *configuration, char *name);
|
|
|
|
extern int config_set_property(int8_t *configuration, char *name, char *property);
|
|
|
|
extern int config_set_indexed_property(int8_t *configuration, char *index_name, char *index_property, char *name, char *property);
|
|
|
|
extern int config_remove_indexed_property(int8_t *configuration, char *index_name, char *index_property, char *name);
|
|
|
|
extern int config_find_indexed_property(int8_t *configuration, char *index_name, char *index_property, char *name, char *property);
|
|
|
|
extern int config_find_entry(int8_t *configuration, char *name, char *property);
|
|
|
|
extern int config_add_property(int8_t* configuration, char* name, char* property);
|