12345678910111213 |
- #ifndef AFUN_REGEX_H_PUBLIC
- #define AFUN_REGEX_H_PUBLIC
- #define REGEX_ERROR_SIZE (512)
- typedef struct af_Regex af_Regex;
- extern char regex_error[REGEX_ERROR_SIZE];
- af_Regex *makeRegex(char *pattern);
- void freeRegex(af_Regex *rg);
- int matchRegex(char *subject, af_Regex *rg);
- #endif //AFUN_REGEX_H_PUBLIC
|