aboutsummaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
authorCamil Staps2016-06-22 23:32:00 +0200
committerCamil Staps2016-06-22 23:32:00 +0200
commitf0db4afe755bb837d63f561978687328596ac7aa (patch)
treebf47f6b1d08a9945d303fb145985c22d7bd16bcf /regex.h
parentMatching works (diff)
Switch to posix; minimal working version
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/regex.h b/regex.h
deleted file mode 100644
index af8e0a2..0000000
--- a/regex.h
+++ /dev/null
@@ -1,10 +0,0 @@
-#define PCRE2_CODE_UNIT_WIDTH 8
-
-#include <inttypes.h>
-#include <pcre2.h>
-#include <stdlib.h>
-#include "Clean.h"
-
-pcre2_code* cleanregex_pcre2_compile(CleanString*, int64_t flags);
-int64_t cleanregex_match(pcre2_code* regex, CleanString* subject);
-