extend mmap wrapper functionality
[libpicofe.git] / common / config.h
... / ...
CommitLineData
1
2#ifdef __cplusplus
3extern "C" {
4#endif
5
6int config_writesect(const char *fname, const char *section);
7int config_writelrom(const char *fname);
8int config_readsect(const char *fname, const char *section);
9int config_readlrom(const char *fname);
10int config_havesect(const char *fname, const char *section);
11int config_get_var_val(void *file, char *line, int lsize, char **rvar, char **rval);
12
13#ifdef __cplusplus
14}
15#endif
16