00001 /********************************************************************** 00002 00003 miniinit.c - 00004 00005 $Author$ 00006 created at: Thu Jul 11 22:09:57 JST 2013 00007 00008 Copyright (C) 2013 Yukihiro Matsumoto 00009 00010 **********************************************************************/ 00011 00012 #include "ruby/ruby.h" 00013 #include "ruby/encoding.h" 00014 00015 /* loadpath.c */ 00016 const char ruby_exec_prefix[] = ""; 00017 const char ruby_initial_load_paths[] = ""; 00018 00019 /* localeinit.c */ 00020 VALUE 00021 rb_locale_charmap(VALUE klass) 00022 { 00023 return rb_usascii_str_new2("ASCII-8BIT"); 00024 } 00025 00026 int 00027 Init_enc_set_filesystem_encoding(void) 00028 { 00029 return rb_enc_to_index(rb_default_external_encoding()); 00030 } 00031
1.6.1