summaryrefslogtreecommitdiffstats
path: root/re.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-01-20 04:59:39 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1999-01-20 04:59:39 +0000
commita2af08da0c33d2dcde870b491f62a8bd0c1c6b81 (patch)
treefeb35473da45947378fbc02defe39bcd79ef600e /re.h
parentc5f4657aaa8a92db27dc722dee741f1b8e0da809 (diff)
downloadruby-a2af08da0c33d2dcde870b491f62a8bd0c1c6b81.tar.gz
ruby-a2af08da0c33d2dcde870b491f62a8bd0c1c6b81.tar.xz
ruby-a2af08da0c33d2dcde870b491f62a8bd0c1c6b81.zip
This commit was generated by cvs2svn to compensate for changes in r372,
which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.h')
-rw-r--r--re.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/re.h b/re.h
index 8769d6ef3..4d7220b5e 100644
--- a/re.h
+++ b/re.h
@@ -3,11 +3,10 @@
re.h -
$Author$
- $Revision$
$Date$
created at: Thu Sep 30 14:18:32 JST 1993
- Copyright (C) 1993-1996 Yukihiro Matsumoto
+ Copyright (C) 1993-1998 Yukihiro Matsumoto
************************************************/
@@ -29,9 +28,12 @@ struct RMatch {
#define RMATCH(obj) (R_CAST(RMatch)(obj))
-int str_cicmp _((VALUE, VALUE));
-VALUE reg_regcomp _((VALUE));
-int reg_search _((VALUE, VALUE, int, struct re_registers *));
-VALUE reg_regsub _((VALUE, VALUE, struct re_registers *));
-void reg_free _((Regexp *));
+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 *));
+
+int rb_kcode _((void));
+
+extern int ruby_ignorecase;
#endif