summaryrefslogtreecommitdiff
path: root/ruby_1_9_3/enc/trans/korean.trans
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_9_3/enc/trans/korean.trans')
-rw-r--r--ruby_1_9_3/enc/trans/korean.trans19
1 files changed, 19 insertions, 0 deletions
diff --git a/ruby_1_9_3/enc/trans/korean.trans b/ruby_1_9_3/enc/trans/korean.trans
new file mode 100644
index 0000000000..ef1cdfcb8e
--- /dev/null
+++ b/ruby_1_9_3/enc/trans/korean.trans
@@ -0,0 +1,19 @@
+#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]
+%>
+
+<%= transcode_generated_code %>
+
+void
+Init_korean(void)
+{
+<%= transcode_register_code %>
+}