blob: 23b933efffbd0ef219c7acec924d76f483a3a4e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _REGEXSET_H_
#define _REGEXSEt_H_
#include <pcre.h>
struct regexset_t {
pcre *text;
pcre *join;
};
void rs_init();
struct regexset_t *rs_add(const char *text, const char *join);
void rs_free();
#endif
|