|
config_file_t * | config_file_new (const char *path) |
|
config_file_t * | config_file_new_with_callback (const char *path, config_file_cb_t *cb) |
|
config_file_t * | config_file_new_from_string (const char *from_string) |
|
void | config_file_free (config_file_t *conf) |
|
bool | config_append_file (config_file_t *conf, const char *path) |
|
bool | config_entry_exists (config_file_t *conf, const char *entry) |
|
bool | config_get_entry_list_head (config_file_t *conf, struct config_file_entry *entry) |
|
bool | config_get_entry_list_next (struct config_file_entry *entry) |
|
bool | config_get_double (config_file_t *conf, const char *entry, double *in) |
|
bool | config_get_float (config_file_t *conf, const char *entry, float *in) |
|
bool | config_get_int (config_file_t *conf, const char *entry, int *in) |
|
bool | config_get_uint (config_file_t *conf, const char *entry, unsigned *in) |
|
bool | config_get_size_t (config_file_t *conf, const char *key, size_t *in) |
|
bool | config_get_hex (config_file_t *conf, const char *entry, unsigned *in) |
|
bool | config_get_char (config_file_t *conf, const char *entry, char *in) |
|
bool | config_get_string (config_file_t *conf, const char *entry, char **in) |
|
bool | config_get_array (config_file_t *conf, const char *entry, char *s, size_t len) |
|
bool | config_get_path (config_file_t *conf, const char *entry, char *s, size_t len) |
|
bool | config_get_config_path (config_file_t *conf, char *s, size_t len) |
|
bool | config_get_bool (config_file_t *conf, const char *entry, bool *in) |
|
void | config_set_double (config_file_t *conf, const char *entry, double value) |
|
void | config_set_float (config_file_t *conf, const char *entry, float value) |
|
void | config_set_int (config_file_t *conf, const char *entry, int val) |
|
void | config_set_hex (config_file_t *conf, const char *entry, unsigned val) |
|
void | config_set_uint64 (config_file_t *conf, const char *entry, uint64_t val) |
|
void | config_set_char (config_file_t *conf, const char *entry, char val) |
|
void | config_set_string (config_file_t *conf, const char *entry, const char *val) |
|
void | config_unset (config_file_t *conf, const char *key) |
|
void | config_set_path (config_file_t *conf, const char *entry, const char *val) |
|
void | config_set_bool (config_file_t *conf, const char *entry, bool val) |
|
void | config_set_uint (config_file_t *conf, const char *key, unsigned int val) |
|
bool | config_file_write (config_file_t *conf, const char *path) |
|
void | config_file_dump (config_file_t *conf, FILE *file) |
|
bool | config_file_exists (const char *path) |
|