From 161fe52c16a68e38d3d4e357459b2dadd72b2148 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 26 Jan 2008 00:30:28 +0000 Subject: * include/ruby/encoding.h (rb_usascii_encindex): added prototype. * include/ruby/intern.h (rb_usascii_str_new, rb_usascii_str_new2): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15248 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/intern.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/ruby/intern.h') diff --git a/include/ruby/intern.h b/include/ruby/intern.h index e552c1f0e..141cf94c2 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -499,6 +499,8 @@ VALUE rb_tainted_str_new2(const char*); VALUE rb_str_buf_new(long); VALUE rb_str_buf_new2(const char*); VALUE rb_str_tmp_new(long); +VALUE rb_usascii_str_new(const char*, long); +VALUE rb_usascii_str_new2(const char*); void rb_str_free(VALUE); void rb_str_shared_replace(VALUE, VALUE); VALUE rb_str_buf_append(VALUE, VALUE); -- cgit