summaryrefslogtreecommitdiff
path: root/re.h
diff options
context:
space:
mode:
Diffstat (limited to 're.h')
-rw-r--r--re.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/re.h b/re.h
deleted file mode 100644
index 3bbbd91f07..0000000000
--- a/re.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/************************************************
-
- re.h -
-
- $Author$
- $Date$
- created at: Thu Sep 30 14:18:32 JST 1993
-
- Copyright (C) 1993-1998 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))
-
-int rb_str_cicmp _((VALUE, VALUE));
-VALUE rb_reg_regcomp _((VALUE));
-int rb_reg_search _((VALUE, VALUE, int, int));
-VALUE rb_reg_regsub _((VALUE, VALUE, struct re_registers *));
-
-extern int ruby_ignorecase;
-#endif