Add support for run-time regex options (REG_NOTBOL and REG_NOTEOL),

and more text transformation functions.
This commit is contained in:
Brian Koropoff 2003-07-15 21:40:37 +00:00
parent 454aa5c603
commit b7d076feab
3 changed files with 72 additions and 5 deletions

View file

@ -42,4 +42,5 @@ void GIB_Regex_Init (void);
regex_t *GIB_Regex_Compile (const char *regex, int cflags);
const char *GIB_Regex_Error (void);
int GIB_Regex_Translate_Options (const char *opstr);
int GIB_Regex_Translate_Runtime_Options (const char *opstr);
unsigned int GIB_Regex_Apply_Match (regmatch_t match[10], dstring_t *dstr, unsigned int ofs, const char *replace);