summaryrefslogtreecommitdiff
path: root/src/include/regmatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/regmatch.h')
-rw-r--r--src/include/regmatch.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/regmatch.h b/src/include/regmatch.h
new file mode 100644
index 0000000..1471e90
--- /dev/null
+++ b/src/include/regmatch.h
@@ -0,0 +1,17 @@
+/** --------------------------------------------------------------------
+ * @file regex.h
+ * @brief Declaration of miscellaneous regexp functions.
+ * @author Andreas Aardal Hanssen
+ * @date 2002-2005
+ * ----------------------------------------------------------------- **/
+#ifndef regex_h_included
+#define regex_h_included
+
+#include <string>
+
+namespace Binc {
+
+ int regexMatch(const std::string &data_in, const std::string &p_in);
+}
+
+#endif