aboutsummaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-05-27 18:38:45 +0200
committerache <ache@ache.one>2017-05-27 18:38:45 +0200
commit3889e10610da7915544d8ad865b2f9385c6dc383 (patch)
tree87a8ec3fb8b7b999d52a4a491e6b31a48ab09f14 /regex.h
parentInit commit (diff)
New files
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/regex.h b/regex.h
new file mode 100644
index 0000000..752f17b
--- /dev/null
+++ b/regex.h
@@ -0,0 +1,17 @@
+
+#ifndef REGEX_METAG_H
+#define REGEX_METAG_H
+
+
+#include <regex.h>
+#include "main.h"
+
+static int compile_regex (regex_t * r, const char * regex_text);
+static int match_regex (const char* rS, const char * to_match, char* m2[], int nbR);
+
+
+void regexXtract(itemC* it, const char* str);
+void regexSelection(menuC* menu, const char* msg);
+
+#endif
+