diff options
Diffstat (limited to 'accel-pptpd/triton/conf_file.h')
-rw-r--r-- | accel-pptpd/triton/conf_file.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/accel-pptpd/triton/conf_file.h b/accel-pptpd/triton/conf_file.h new file mode 100644 index 00000000..47ade313 --- /dev/null +++ b/accel-pptpd/triton/conf_file.h @@ -0,0 +1,16 @@ +#ifndef CONF_FILE_H +#define CONF_FILE_H + +#include "list.h" + +struct conf_file_sect_t +{ + const char *name; + + struct list_head items; +}; + +void conf_file_load(const char *fname); +struct conf_file_sect_t *conf_file_get_section(const char *name); + +#endif |