diff options
Diffstat (limited to 'src/lib/config_file.h')
-rw-r--r-- | src/lib/config_file.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/config_file.h b/src/lib/config_file.h index 5aa9826..938d203 100644 --- a/src/lib/config_file.h +++ b/src/lib/config_file.h @@ -28,6 +28,8 @@ typedef struct _pxConfigFile pxConfigFile; pxConfigFile *px_config_file_new (char *filename); bool px_config_file_is_stale (pxConfigFile *self); +char **px_config_file_get_sections(pxConfigFile *self); +char **px_config_file_get_keys (pxConfigFile *self, char *section); char *px_config_file_get_value (pxConfigFile *self, char *section, char *key); void px_config_file_free (pxConfigFile *self); |