mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
919462710b
* miniinit.c (Init_enc): add some common aliases of built-in encodings. [ruby-core:72481] [Bug #11872] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
49 lines
975 B
C
49 lines
975 B
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");
|
|
}
|