mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
localeinit.c: split
* localeinit.c (rb_locale_charmap, Init_enc_set_filesystem_encoding): move from encoding.c. * miniinit.c (rb_locale_charmap, Init_enc_set_filesystem_encoding): define miniruby specific functions only. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3048637571
commit
5f2080048e
7 changed files with 114 additions and 64 deletions
30
miniinit.c
Normal file
30
miniinit.c
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
/**********************************************************************
|
||||
|
||||
miniinit.c -
|
||||
|
||||
$Author$
|
||||
created at: Thu Jul 11 22:09:57 JST 2013
|
||||
|
||||
Copyright (C) 2013 Yukihiro Matsumoto
|
||||
|
||||
**********************************************************************/
|
||||
|
||||
#include "ruby/ruby.h"
|
||||
#include "ruby/encoding.h"
|
||||
|
||||
/* loadpath.c */
|
||||
const char ruby_exec_prefix[] = "";
|
||||
const char ruby_initial_load_paths[] = "";
|
||||
|
||||
/* localeinit.c */
|
||||
VALUE
|
||||
rb_locale_charmap(VALUE klass)
|
||||
{
|
||||
return rb_usascii_str_new2("ASCII-8BIT");
|
||||
}
|
||||
|
||||
int
|
||||
Init_enc_set_filesystem_encoding(void)
|
||||
{
|
||||
return rb_enc_to_index(rb_default_external_encoding());
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue