Blob


1 struct rule {
2 int action;
3 int options;
4 const char *ident;
5 const char *target;
6 const char **files;
7 };
9 extern struct rule **rules;
10 extern int nrules, maxrules;
11 extern int parse_errors;
13 size_t arraylen(const char * const*);
15 #define PERMIT 1
16 #define DENY 2
18 #define NOPASS 0x1
19 #define PERSIST 0x4