summaryrefslogtreecommitdiff
path: root/trex.h
diff options
context:
space:
mode:
Diffstat (limited to 'trex.h')
-rw-r--r--trex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/trex.h b/trex.h
index 2ba378f..698147d 100644
--- a/trex.h
+++ b/trex.h
@@ -56,7 +56,7 @@ typedef struct {
int len;
} TRexMatch;
-TREX_API TRex *trex_compile(const TRexChar *pattern,const TRexChar **error);
+TREX_API TRex *trex_compile(const TRexChar *pattern,const TRexChar **error,int flags);
TREX_API void trex_free(TRex *exp);
TREX_API TRexBool trex_match(TRex* exp,const TRexChar* text);
TREX_API TRexBool trex_search(TRex* exp,const TRexChar* text, const TRexChar** out_begin, const TRexChar** out_end);