blob: 9dcf7dc4ffc6cae94c164611859bff6277112ac9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef SETTINGS_H
#define SETTINGS_H
#include "common.h"
typedef struct {
char data[400];
} err_reason_t;
__FICS_BEGIN_DECLS
void settings_init(void);
void settings_deinit(void);
const char *settings_get(const char *set_name);
void settings_read_conf(const char *path);
__FICS_END_DECLS
#endif
|