server/src/bind_config.h
Enno Rehling abca25d1d5 fix indentation in every file
fix copyright date
remove vi ts=2 code
remove a couple of superfluous extern declarations
2015-01-30 20:37:14 +01:00

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