summaryrefslogtreecommitdiff
path: root/regex.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 03:06:15 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-10 03:06:15 +0000
commit2b592580bf65040373b55ff2ccc3b59a0a231a18 (patch)
tree642a6c82599486537c3136f32cac7a644c4bf4a3 /regex.h
parent1b8a677b235066d91994e3490e0bce5a098196a2 (diff)
* include/ruby: moved public headers.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12501 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/regex.h b/regex.h
deleted file mode 100644
index d2877937ca..0000000000
--- a/regex.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/**********************************************************************
-
- regex.h -
-
- $Author$
- $Date$
-
- Copyright (C) 1993-2005 Yukihiro Matsumoto
-
-**********************************************************************/
-
-#ifndef REGEX_H
-#define REGEX_H
-
-#include "oniguruma.h"
-
-#ifndef ONIG_RUBY_M17N
-
-ONIG_EXTERN OnigEncoding OnigEncDefaultCharEncoding;
-
-#undef ismbchar
-#define ismbchar(c) (mbclen((c)) != 1)
-#define mbclen(c) \
- ONIGENC_MBC_ENC_LEN(OnigEncDefaultCharEncoding, (UChar* )(&c))
-
-#endif /* ifndef ONIG_RUBY_M17N */
-
-#endif /* !REGEX_H */