You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
497 B
16 lines
497 B
9 years ago
|
#ifndef F2B_REGEX_H_
|
||
|
#define F2B_REGEX_H_
|
||
|
|
||
|
#define HOST_TOKEN "<HOST>"
|
||
|
|
||
|
typedef struct _regex f2b_regex_t;
|
||
|
|
||
|
f2b_regex_t * f2b_regex_create (const char *pattern, bool icase);
|
||
|
void f2b_regex_destroy(f2b_regex_t *regex);
|
||
|
|
||
|
f2b_regex_t * f2b_regexlist_append(f2b_regex_t *list, f2b_regex_t *regex);
|
||
|
bool f2b_regexlist_match (f2b_regex_t *list, const char *line, char *matchbuf, size_t matchbuf_size);
|
||
|
f2b_regex_t * f2b_regexlist_destroy(f2b_regex_t *list);
|
||
|
|
||
|
#endif /* F2B_REGEX_H_ */
|