forked from github/server
abca25d1d5
fix copyright date remove vi ts=2 code remove a couple of superfluous extern declarations
14 lines
270 B
C
14 lines
270 B
C
#ifndef BIND_ERESSEA_CONFIG_H
|
|
#define BIND_ERESSEA_CONFIG_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void config_reset(void);
|
|
int config_parse(const char *json);
|
|
int config_read(const char *filename, const char * relpath);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|