mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* encoding.c (rb_enc_codelen): raises invalid sequence exception
if ONIGENC_CODE_TO_MBCLEN() returns zero. [ruby-dev:31661] * encoding.c (rb_enc_mbclen): check invalid sequence. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13287 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a1a618ead1
commit
4461bd2f1f
3 changed files with 31 additions and 2 deletions
|
@ -50,8 +50,10 @@ rb_encoding * rb_enc_find(const char *name);
|
|||
#define rb_enc_mbmaxlen(enc) (enc)->max_enc_len
|
||||
|
||||
/* ptr,encoding -> mbclen */
|
||||
#define rb_enc_mbclen(p,enc) ONIGENC_MBC_ENC_LEN(enc, (UChar*)p)
|
||||
#define rb_enc_codelen(c,enc) ONIGENC_CODE_TO_MBCLEN(enc,c)
|
||||
int rb_enc_mbclen(const char*, rb_encoding*);
|
||||
|
||||
/* code,encoding -> codelen */
|
||||
int rb_enc_codelen(int, rb_encoding*);
|
||||
|
||||
/* code,ptr,encoding -> write buf */
|
||||
#define rb_enc_mbcput(c,buf,enc) ONIGENC_CODE_TO_MBC(enc,c,(UChar*)buf)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue