From 7ce11f57edb0ced7e192e6926a4fe991e331e776 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 6 Sep 2013 02:45:50 +0000 Subject: transcode.c: add rb_econv_append * transcode.c (rb_econv_append): new function to append a string data with converting its encoding. split from rb_econv_substr_append. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42853 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/encoding.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include') diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index e0dc66dec7..1c5d8da015 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -309,6 +309,7 @@ VALUE rb_econv_str_convert(rb_econv_t *ec, VALUE src, int flags); VALUE rb_econv_substr_convert(rb_econv_t *ec, VALUE src, long byteoff, long bytesize, int flags); VALUE rb_econv_str_append(rb_econv_t *ec, VALUE src, VALUE dst, int flags); VALUE rb_econv_substr_append(rb_econv_t *ec, VALUE src, long byteoff, long bytesize, VALUE dst, int flags); +VALUE rb_econv_append(rb_econv_t *ec, const char *bytesrc, long bytesize, VALUE dst, int flags); void rb_econv_binmode(rb_econv_t *ec); -- cgit v1.2.3