69631ff ^
4120bca ^
1 2 3
4 5 6 7 8 9 10 11 12 13
14 15
#ifndef RF_IGNORE_H #define RF_IGNORE_H #define IGNORE_SIZE 100 struct ignores { char **list; int size; }; struct ignores *init_ignores(char *path); void free_ignores(struct ignores *ignores); #endif