summaryrefslogtreecommitdiffstats
path: root/regenc.h
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-07 16:47:40 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-09-07 16:47:40 +0000
commitc951a8daeee7c70195195e53603ac2fb65a4e56c (patch)
treefe3235e079ba04bd7b8d68f7945caac5ff82445d /regenc.h
parent189332a5e2c38bf9b5cc24f6a0407e1a967f60bf (diff)
downloadruby-c951a8daeee7c70195195e53603ac2fb65a4e56c.tar.gz
ruby-c951a8daeee7c70195195e53603ac2fb65a4e56c.tar.xz
ruby-c951a8daeee7c70195195e53603ac2fb65a4e56c.zip
* regenc.c, regenc.h (onigenc_single_byte_mbc_enc_len): should take
two arguments. [ruby-dev:31754] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13403 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regenc.h')
-rw-r--r--regenc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regenc.h b/regenc.h
index 55a71ab44..47653fd94 100644
--- a/regenc.h
+++ b/regenc.h
@@ -117,7 +117,7 @@ ONIG_EXTERN int onigenc_is_mbc_newline_0x0a P_((const UChar* p, const UChar* end
/* methods for single byte encoding */
ONIG_EXTERN int onigenc_ascii_mbc_case_fold P_((OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));
-ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar* p));
+ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar* p, const UChar* e));
ONIG_EXTERN OnigCodePoint onigenc_single_byte_mbc_to_code P_((const UChar* p, const UChar* end));
ONIG_EXTERN int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code));
ONIG_EXTERN int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf));