diff options
Diffstat (limited to 'regexp.h')
-rw-r--r-- | regexp.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -43,6 +43,7 @@ extern int regexec(struct regexp* re, char* str, int bol, int ignoreCase); | |||
43 | extern void regsub(struct regexp* re, char* src, char* dst); | 43 | extern void regsub(struct regexp* re, char* src, char* dst); |
44 | 44 | ||
45 | extern int find_match(char *haystack, char *needle, int ignoreCase); | 45 | extern int find_match(char *haystack, char *needle, int ignoreCase); |
46 | extern int replace_match(char *haystack, char *needle, char *newNeedle, int ignoreCase); | ||
46 | 47 | ||
47 | #endif | 48 | #endif |
48 | 49 | ||