diff options
Diffstat (limited to 'conf.h')
-rw-r--r-- | conf.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -0,0 +1,15 @@ +#ifndef _CONF_H +#define _CONF_H + +typedef struct config_t { + char **repos; + int size; + int capacity; +} config_t; + +int config_parse(config_t *config, const char *filename); +void config_reset(config_t *config); + +#endif /* _CONF_H */ + +/* vim: set et ts=2 sw=2: */ |