From 0980fe7903b253e8a67a45eea6bd9856d0d85cf0 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 20 May 2009 04:44:36 +0000 Subject: * 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 --- include/ruby/encoding.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/ruby/encoding.h') diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 4f6608cb1b..9be412ddf2 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -112,6 +112,9 @@ rb_encoding * rb_enc_find(const char *name); /* -> mbclen (no error notification: 0 < ret <= e-p, no exception) */ int rb_enc_mbclen(const char *p, const char *e, rb_encoding *enc); +/* -> mbclen (only for valid encoding) */ +int rb_enc_fast_mbclen(const char *p, const char *e, rb_encoding *enc); + /* -> chlen, invalid or needmore */ int rb_enc_precise_mbclen(const char *p, const char *e, rb_encoding *enc); #define MBCLEN_CHARFOUND_P(ret) ONIGENC_MBCLEN_CHARFOUND_P(ret) -- cgit v1.2.3