mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8b112c580c
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
11 lines
183 B
C
11 lines
183 B
C
#include <ruby/ruby.h>
|
|
#include <ruby/encoding.h>
|
|
#include "regenc.h"
|
|
|
|
void
|
|
Init_euc_cn(void)
|
|
{
|
|
rb_enc_register("EUC-CN", rb_enc_find("EUC-KR"));
|
|
}
|
|
|
|
ENC_ALIAS("eucCN", "EUC-CN");
|