diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-25 08:05:08 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-25 08:05:08 +0000 |
commit | 464954b97c9567b0ecd01725e396ff2bc0456179 (patch) | |
tree | b372d8c8814c766455fadd93c18f62e8c9b36d39 /include/ruby/encoding.h | |
parent | d1c028dadcd093f3991ec3076d09660b16615892 (diff) | |
download | ruby-464954b97c9567b0ecd01725e396ff2bc0456179.tar.gz ruby-464954b97c9567b0ecd01725e396ff2bc0456179.tar.xz ruby-464954b97c9567b0ecd01725e396ff2bc0456179.zip |
* include/ruby/encoding.h (rb_enc_str_new): prototype added.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13269 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/encoding.h')
-rw-r--r-- | include/ruby/encoding.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 1e0dffd86..d23238a18 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -32,6 +32,7 @@ rb_encoding* rb_enc_check(VALUE,VALUE); void rb_enc_associate(VALUE, rb_encoding*); void rb_enc_copy(VALUE, VALUE); +VALUE rb_enc_str_new(const char*, long len, rb_encoding*); long rb_enc_strlen(const char*, const char*, rb_encoding*); char* rb_enc_nth(const char*, const char*, int, rb_encoding*); |