summaryrefslogtreecommitdiffstats
path: root/conf.h
blob: 1ce6a17e6be621c5b77698f718f9c020c38d20e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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: */