From 446e47937737980f6757134b77267bd83a69f066 Mon Sep 17 00:00:00 2001 From: ache Date: Tue, 5 Feb 2019 19:16:42 +0100 Subject: Add config file management --- config.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 config.h (limited to 'config.h') 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 -- cgit v1.2.3