diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-16 08:18:47 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-16 08:18:47 +0000 |
| commit | 43025927c6629904b59130bec66fc61ebc83ac4d (patch) | |
| tree | a32ff0c08fa1e26eb8e883786409e53520081bcf | |
| parent | 3694f1dda70923b2acc66af6553c422ba87daddd (diff) | |
* include/ruby/encoding.h (rb_str_conv_enc_opts): missing prototype.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26953 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | include/ruby/encoding.h | 1 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Tue Mar 16 17:18:44 2010 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * include/ruby/encoding.h (rb_str_conv_enc_opts): missing prototype. + Tue Mar 16 15:20:13 2010 Nobuyoshi Nakada <nobu@ruby-lang.org> * ext/tmpdir: split from lib/tmpdir.rb. diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 2cac1bcb53..e614ea4a01 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -95,6 +95,7 @@ VALUE rb_enc_str_buf_cat(VALUE str, const char *ptr, long len, rb_encoding *enc) VALUE rb_external_str_new_with_enc(const char *ptr, long len, rb_encoding *); VALUE rb_str_export_to_enc(VALUE, rb_encoding *); VALUE rb_str_conv_enc(VALUE str, rb_encoding *from, rb_encoding *to); +VALUE rb_str_conv_enc_opts(VALUE str, rb_encoding *from, rb_encoding *to, int ecflags, VALUE ecopts); /* index -> rb_encoding */ rb_encoding* rb_enc_from_index(int idx); |
