telnetproxy/configfile.h

16 lines
436 B
C
Raw Normal View History

2006-11-25 14:31:52 +01:00
#ifndef _CONFIG_H_
#define _CONFIG_H_
int config_parse(const char *config);
2007-04-17 18:31:59 +02:00
void config_free(void);
2006-11-25 14:31:52 +01:00
2007-04-17 18:31:59 +02:00
const char * config_get_string(const char *section_str, const char *option, const char *def);
2006-11-25 14:31:52 +01:00
int config_get_int(const char *section, const char *option, int def);
int config_get_strings(const char *section_str, const char *option,
int (*callback)(const char *value, void *privdata),
void *privdata);
#endif /* _CONFIG_H_ */