From 63a96b313b5f1aff1edfd86e688b5519a8974af5 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 13 Oct 2007 16:32:40 +0000 Subject: * encoding.c (rb_cEncoding): new Encoding class. * encoding.c (rb_to_encoding, rb_to_encoding_index): helper functions. * encoding.c (rb_obj_encoding): return Encoding object now. * gc.c (garbage_collect): mark Encoding objects. * string.c (rb_str_force_encoding): accept Encoding object as well as encoding name. * include/ruby/encoding.h (rb_to_encoding_index, rb_to_encoding): prototypes. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13692 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/encoding.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/ruby/encoding.h') diff --git a/include/ruby/encoding.h b/include/ruby/encoding.h index 715c6f6d2..6645a1e29 100644 --- a/include/ruby/encoding.h +++ b/include/ruby/encoding.h @@ -41,6 +41,8 @@ typedef OnigEncodingType rb_encoding; int rb_enc_to_index(rb_encoding*); int rb_enc_get_index(VALUE obj); int rb_enc_find_index(const char *name); +int rb_to_encoding_index(VALUE); +rb_encoding* rb_to_encoding(VALUE); rb_encoding* rb_enc_get(VALUE); rb_encoding* rb_enc_check(VALUE,VALUE); void rb_enc_associate_index(VALUE, int); -- cgit