mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
13 lines
214 B
C
13 lines
214 B
C
|
#include <ruby/ruby.h>
|
||
|
#include <ruby/encoding.h>
|
||
|
#include "regenc.h"
|
||
|
|
||
|
void
|
||
|
Init_gb2312(void)
|
||
|
{
|
||
|
rb_enc_register("GB2312", rb_enc_find("EUC-KR"));
|
||
|
}
|
||
|
|
||
|
ENC_ALIAS("EUC-CN", "GB2312");
|
||
|
ENC_ALIAS("eucCN", "GB2312");
|