blob: 1bc3addf7c354df4f9c92922d8c070202c0583a6 (
plain) (
blame)
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
|