config: forgot some struct fields

This commit is contained in:
snow flurry 2020-11-13 22:09:38 -08:00
parent a6d33cae7c
commit cd49319674

View file

@ -15,8 +15,11 @@ typedef struct config_t {
uint16_t end;
uint16_t skip_a;
uint16_t skip_b;
struct conf_opts_t opts;
struct config_t *next;
} config_t;
config_t *parse_config(char *);
void free_config(config_t *);
#endif /* !_CONFIG_H */