summaryrefslogtreecommitdiff
path: root/encoding.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-20 04:44:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-05-20 04:44:36 +0000
commit0980fe7903b253e8a67a45eea6bd9856d0d85cf0 (patch)
treef2a23f73e26d084a976786561c2b3cdcdce59ec7 /encoding.c
parentc81863c321798391409f8beb2c1660309964efda (diff)
* encoding.c (rb_enc_fast_mbclen): faster mbclen for strings known
to be valid. * string.c (enc_strlen): coderange specified version of rb_enc_strlen(). use rb_enc_fast_mbclen() if coderange is 7bit or valid. * string.c (str_gsub): use rb_enc_fast_mbclen(). * string.c (rb_str_reverse, rb_str_split_m, rb_str_each_char, scan_once): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'encoding.c')
-rw-r--r--encoding.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/encoding.c b/encoding.c
index 223eace375..4ef45cd65e 100644
--- a/encoding.c
+++ b/encoding.c
@@ -727,6 +727,12 @@ rb_obj_encoding(VALUE obj)
}
int
+rb_enc_fast_mbclen(const char *p, const char *e, rb_encoding *enc)
+{
+ return ONIGENC_MBC_ENC_LEN(enc, (UChar*)p, (UChar*)e);
+}
+
+int
rb_enc_mbclen(const char *p, const char *e, rb_encoding *enc)
{
int n = ONIGENC_PRECISE_MBC_ENC_LEN(enc, (UChar*)p, (UChar*)e);