From f0fc6ec872f043836f01455b16feee6bb9ed9eb9 Mon Sep 17 00:00:00 2001 From: duerst Date: Wed, 8 Jun 2016 12:28:42 +0000 Subject: * string.c: New static function rb_str_ascii_casemap; special-casing :ascii option in rb_str_upcase_bang and rb_str_downcase_bang. * regenc.c: Fix a bug (wrong use of unnecessary slack at end of string). * regenc.h -> include/ruby/oniguruma.h: Move declaration of onigenc_ascii_only_case_map so that it is visible in string.c. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55329 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/oniguruma.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/ruby/oniguruma.h') diff --git a/include/ruby/oniguruma.h b/include/ruby/oniguruma.h index 51c200a351..523fc7089a 100644 --- a/include/ruby/oniguruma.h +++ b/include/ruby/oniguruma.h @@ -229,6 +229,14 @@ ONIG_EXTERN const OnigEncodingType OnigEncodingASCII; #define ONIG_ENCODING_UNDEF ((OnigEncoding )0) +#ifdef ONIG_CASE_MAPPING + /* this declaration needs to be here because it is used in string.c */ + ONIG_EXTERN int onigenc_ascii_only_case_map P_((OnigCaseFoldType* flagP, + const OnigUChar** pp, const OnigUChar* end, + OnigUChar* to, OnigUChar* to_end, + const struct OnigEncodingTypeST* enc)); +#endif /* ONIG_CASE_MAPPING */ + /* work size */ #define ONIGENC_CODE_TO_MBC_MAXLEN 7 -- cgit v1.2.3