summaryrefslogtreecommitdiff
path: root/trunk/enc/trans/korean.trans
blob: f04fa15613136a3ccf383419c7453ac1ab89de7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "transcode_data.h"

<%
  require "euckr-tbl"
  require "cp949-tbl"
%>

<%= transcode_tblgen "UTF-8", "EUC-KR", [["{00-7f}", :nomap], *UCS_TO_EUCKR_TBL] %>
<%= transcode_tblgen "EUC-KR", "UTF-8", [["{00-7f}", :nomap], *EUCKR_TO_UCS_TBL] %>
<%= transcode_tblgen "UTF-8", "CP949", [["{00-7f}", :nomap], *UCS_TO_CP949_TBL] %>
<%= transcode_tblgen "CP949", "UTF-8", [["{00-7f}", :nomap], *CP949_TO_UCS_TBL] %>

void
Init_korean(void)
{
<%= transcode_register_code %>
}