зеркало из https://github.com/github/ruby.git
65 строки
1.2 KiB
C
65 строки
1.2 KiB
C
/**********************************************************************
|
|
|
|
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)
|
|
{
|
|
/* never used */
|
|
return Qnil;
|
|
}
|
|
|
|
int
|
|
rb_locale_charmap_index(void)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int
|
|
Init_enc_set_filesystem_encoding(void)
|
|
{
|
|
return rb_enc_to_index(rb_default_external_encoding());
|
|
}
|
|
|
|
void rb_encdb_declare(const char *name);
|
|
int rb_encdb_alias(const char *alias, const char *orig);
|
|
void
|
|
Init_enc(void)
|
|
{
|
|
rb_encdb_declare("ASCII-8BIT");
|
|
rb_encdb_declare("US-ASCII");
|
|
rb_encdb_declare("UTF-8");
|
|
rb_encdb_alias("BINARY", "ASCII-8BIT");
|
|
rb_encdb_alias("ASCII", "US-ASCII");
|
|
}
|
|
|
|
/* miniruby does not support dynamic loading. */
|
|
void
|
|
Init_ext(void)
|
|
{
|
|
}
|
|
|
|
#include "mini_builtin.c"
|
|
|
|
void
|
|
rb_free_loaded_builtin_table(void)
|
|
{
|
|
if (loaded_builtin_table)
|
|
st_free_table(loaded_builtin_table);
|
|
}
|