Compare commits
2 commits
a6d33cae7c
...
9bce32e727
Author | SHA1 | Date | |
---|---|---|---|
snow flurry | 9bce32e727 | ||
snow flurry | cd49319674 |
4
TODO
Normal file
4
TODO
Normal 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
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue