summaryrefslogtreecommitdiff
path: root/jni/ruby/enc/trans/chinese.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/chinese.trans
Fresh start
Diffstat (limited to 'jni/ruby/enc/trans/chinese.trans')
-rw-r--r--jni/ruby/enc/trans/chinese.trans31
1 files changed, 31 insertions, 0 deletions
diff --git a/jni/ruby/enc/trans/chinese.trans b/jni/ruby/enc/trans/chinese.trans
new file mode 100644
index 0000000..282c91a
--- /dev/null
+++ b/jni/ruby/enc/trans/chinese.trans
@@ -0,0 +1,31 @@
+#include "transcode_data.h"
+
+<%
+ gb2312_valid_byte_pattern = ValidEncoding('EUC-KR')
+ gb12345_valid_byte_pattern = ValidEncoding('EUC-KR')
+
+ transcode_tblgen "GB2312", "UTF-8",
+ [["{00-7f}", :nomap]] +
+ citrus_decode_mapsrc("euc", 0x8080, "GB2312/UCS"),
+ gb2312_valid_byte_pattern
+
+ transcode_tblgen "GB12345", "UTF-8",
+ [["{00-7f}", :nomap]] +
+ citrus_decode_mapsrc("euc", 0x8080, "GB12345/UCS"),
+ gb12345_valid_byte_pattern
+
+ transcode_tblgen "UTF-8", "GB2312",
+ [["{00-7f}", :nomap]] +
+ citrus_decode_mapsrc("euc", 0x8080, "UCS/GB2312")
+
+ transcode_tblgen "UTF-8", "GB12345",
+ [["{00-7f}", :nomap]] +
+ citrus_decode_mapsrc("euc", 0x8080, "UCS/GB12345")
+%>
+
+<%= transcode_generated_code %>
+
+TRANS_INIT(chinese)
+{
+<%= transcode_register_code %>
+}