Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
dlight/filter.h
Henrik Hautakoski b2df740514 Initial commit
2011-09-21 17:13:28 +02:00

11 lines
240 B
C

#ifndef FILTER_H
#define FILTER_H
int filter_check_syntax(const char *pattern);
int filter_match(const char *pattern, const char *subject);
int filter_match_list(char **patterns, unsigned n, const char *subject);
#endif /* FILTER_H */