about summary refs log blame commit diff stats
path: root/ignore.h
blob: 3fcc445aa39237dbadf4cfb9f21651beb73e7283 (plain) (tree)
1
2
3
4
5
6
7
8
9


                   

                       



                       







                                           

      
#ifndef RF_IGNORE_H
#define RF_IGNORE_H

#define IGNORE_SIZE 100

#ifdef _WIN32
#define MAXPATHLEN 1024
#endif

struct ignores {
	char **list;
	int size;
};

struct ignores *init_ignores(char *path);

void free_ignores(struct ignores *ignores);

#endif