Compare commits

...

2 commits

Author SHA1 Message Date
snow flurry 9bce32e727 TODO: add TODO 2020-11-13 22:13:31 -08:00
snow flurry cd49319674 config: forgot some struct fields 2020-11-13 22:09:38 -08:00
2 changed files with 8 additions and 1 deletions

4
TODO Normal file
View file

@ -0,0 +1,4 @@
Implement randomness (xorshift? https://www.jstatsoft.org/article/view/v008i14)
Maybe extract file "read"/"write" operations with read_fat_chain()
Config parser (config.c)
Do the actual corrupty things

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 */