aboutsummaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-02-05 19:16:42 +0100
committerache <ache@ache.one>2019-02-05 19:16:42 +0100
commit446e47937737980f6757134b77267bd83a69f066 (patch)
tree5324351635695458782522fb03f31a6ed7a7ea45 /config.h
parentSearch function (diff)
Add config file management
Diffstat (limited to 'config.h')
-rw-r--r--config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..d053bc7
--- /dev/null
+++ b/config.h
@@ -0,0 +1,15 @@
+#ifndef CONFIG_H
+#define CONFIG_H
+
+typedef struct config_t {
+ char SMS_INBOX[256];
+ char SMS_OUTBOX[256];
+ char SMS_SENTBOX[256];
+ char MMS_DIR[256];
+ char CONTACT_FILENAME[256];
+
+} config_t;
+
+int readConfigFile(void);
+
+#endif