aboutsummaryrefslogtreecommitdiff
path: root/config.h
blob: 8779606f3f93003255fc1e45abd356229ebd18f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef CONFIG_H
#define CONFIG_H

#include<sys/types.h>
#include<pwd.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