aboutsummaryrefslogtreecommitdiff
path: root/config.h
blob: d053bc785ac5c9dfce6a23457df825ba7ba794f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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