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 116 #define DENY 218 #define NOPASS 0x119 #define PERSIST 0x4