aboutsummaryrefslogtreecommitdiffstats
path: root/re.h
diff options
context:
space:
mode:
Diffstat (limited to 're.h')
-rw-r--r--re.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/re.h b/re.h
new file mode 100644
index 0000000000..2be0fb7bde
--- /dev/null
+++ b/re.h
@@ -0,0 +1,34 @@
+/************************************************
+
+ re.h -
+
+ $Author$
+ $Revision$
+ $Date$
+ created at: Thu Sep 30 14:18:32 JST 1993
+
+ Copyright (C) 1993-1996 Yukihiro Matsumoto
+
+************************************************/
+
+#ifndef RE_H
+#define RE_H
+
+#include <sys/types.h>
+#include <stdio.h>
+
+#include "regex.h"
+
+typedef struct re_pattern_buffer Regexp;
+
+struct RMatch {
+ struct RBasic basic;
+ VALUE str;
+ struct re_registers *regs;
+};
+
+#define RMATCH(obj) (R_CAST(RMatch)(obj))
+
+VALUE re_regcomp();
+VALUE re_regsub();
+#endif