-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheasy_config.h
44 lines (37 loc) · 945 Bytes
/
easy_config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once
#include <stdbool.h>
typedef struct ECParam ECParam;
struct ECParam {
const char* name;
void* f;
ECParam* next;
};
typedef struct ECCategory ECCategory;
struct ECCategory {
const char* name;
unsigned id;
ECParam* params;
ECCategory* next;
};
typedef struct EConfig {
const char* file;
char* delim;
int lastid;
ECCategory* categories;
void* user_param;
} EConfig;
typedef enum {
EC_SUCCESS = 0,
EC_CANNOT_OPEN_FILE = -1,
EC_CAT_NOT_FOUND = -2,
EC_PARSING_ERROR = -3,
EC_KEY_NOT_FOUND = -4
} EC_ERRORS;
EConfig* econfig_init(const char* file, void* user_param);
unsigned econfig_addCategory(EConfig* config, const char* category);
int econfig_addParam(EConfig* config, unsigned category, const char* param, void* f);
int econfig_parse(EConfig* config);
void econfig_free(EConfig* config);
int econfig_getInt(char* value);
unsigned int econfig_getUnsignedInt(char* value);
bool econfig_getBoolean(char* value);