summaryrefslogtreecommitdiffstats
path: root/src/config-ini.h
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2019-01-05 22:06:45 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2019-01-05 22:06:45 +0100
commitdaa68c4b2de9814b8331e7b9079d5fc49bee35c1 (patch)
tree4f82de8a19abf7b6a0c9e6f511ac23995d9d5851 /src/config-ini.h
parent9e059f898ae1b0528cdde553fd51c661901e283a (diff)
downloadneco-daa68c4b2de9814b8331e7b9079d5fc49bee35c1.tar
neco-daa68c4b2de9814b8331e7b9079d5fc49bee35c1.zip
Add first parts of interface config handling
Diffstat (limited to 'src/config-ini.h')
-rw-r--r--src/config-ini.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config-ini.h b/src/config-ini.h
index 58f6608..48400fd 100644
--- a/src/config-ini.h
+++ b/src/config-ini.h
@@ -4,19 +4,19 @@
#include <stdio.h>
-typedef struct {
+typedef struct _ini_field {
struct list_head node;
char *key;
char *value;
} ini_field_t;
-typedef struct {
+typedef struct _ini_section {
struct list_head node;
struct list_head fields;
char *name;
} ini_section_t;
-typedef struct {
+typedef struct _ini_file {
struct list_head sections;
} ini_file_t;