Implemented amb673 - pre-compiled regular expression support.

Also commented in the include file a bit better.
This commit is contained in:
Steve Dudenhoeffer
2007-08-01 17:36:10 +00:00
parent cf36abf7e6
commit 48022d3c5c
4 changed files with 222 additions and 17 deletions

View File

@@ -9,8 +9,9 @@ public:
bool isFree(bool set=false, bool val=false);
void Clear();
int Compile(const char *pattern);
int Compile(const char *pattern, const char* flags = NULL);
int Match(const char *str);
void ClearMatch();
const char *GetSubstring(int s, char buffer[], int max);
public:
int mErrorOffset;