summaryrefslogtreecommitdiff
path: root/jni/ruby/enc/trans/korean.trans
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/enc/trans/korean.trans
Fresh start
Diffstat (limited to 'jni/ruby/enc/trans/korean.trans')
-rw-r--r--jni/ruby/enc/trans/korean.trans18
1 files changed, 18 insertions, 0 deletions
diff --git a/jni/ruby/enc/trans/korean.trans b/jni/ruby/enc/trans/korean.trans
new file mode 100644
index 0000000..fda1a3e
--- /dev/null
+++ b/jni/ruby/enc/trans/korean.trans
@@ -0,0 +1,18 @@
+#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 %>
+
+TRANS_INIT(korean)
+{
+<%= transcode_register_code %>
+}