mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
183 B
C
12 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");
|