summaryrefslogtreecommitdiffstats
path: root/src/config-ini.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/config-ini.h')
-rw-r--r--src/config-ini.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/config-ini.h b/src/config-ini.h
deleted file mode 100644
index 48400fd..0000000
--- a/src/config-ini.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-
-#include <libubox/list.h>
-
-#include <stdio.h>
-
-typedef struct _ini_field {
- struct list_head node;
- char *key;
- char *value;
-} ini_field_t;
-
-typedef struct _ini_section {
- struct list_head node;
- struct list_head fields;
- char *name;
-} ini_section_t;
-
-typedef struct _ini_file {
- struct list_head sections;
-} ini_file_t;
-
-ini_file_t * read_ini_file(FILE *f);
-void free_ini_file(ini_file_t *file);