blob: 4a1eae01be82ef0055fb48b9bbc2eef11dfa0b0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SETTINGS_H
#define SETTINGS_H
#include "common.h"
__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
|