diff options
Diffstat (limited to 'jimregexp.h')
-rw-r--r-- | jimregexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/jimregexp.h b/jimregexp.h index c8bf8c3..e18178e 100644 --- a/jimregexp.h +++ b/jimregexp.h @@ -98,10 +98,10 @@ enum { REG_ERR_NUM }; -int regcomp(regex_t *preg, const char *regex, int cflags); -int regexec(regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags); -size_t regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size); -void regfree(regex_t *preg); +int jim_regcomp(regex_t *preg, const char *regex, int cflags); +int jim_regexec(regex_t *preg, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags); +size_t jim_regerror(int errcode, const regex_t *preg, char *errbuf, size_t errbuf_size); +void jim_regfree(regex_t *preg); #ifdef __cplusplus } |