mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f694ec83e8
* tool/transcode-tblgen.rb: new file. * enc/trans/make_transdb.rb: exclude *.erb.c. * enc/depend: exclude *.erb.c. * enc/trans/utf_16_32.erb.c: new file. * enc/trans/single_byte.erb.c: new file. * enc/trans/japanese.erb.c: new file. * enc/trans/korean.erb.c: new file. * enc/trans/iso-8859-2-tbl.rb: new file. * enc/trans/iso-8859-3-tbl.rb: new file. * enc/trans/iso-8859-4-tbl.rb: new file. * enc/trans/iso-8859-5-tbl.rb: new file. * enc/trans/iso-8859-6-tbl.rb: new file. * enc/trans/iso-8859-7-tbl.rb: new file. * enc/trans/iso-8859-8-tbl.rb: new file. * enc/trans/iso-8859-9-tbl.rb: new file. * enc/trans/iso-8859-10-tbl.rb: new file. * enc/trans/iso-8859-11-tbl.rb: new file. * enc/trans/iso-8859-13-tbl.rb: new file. * enc/trans/iso-8859-14-tbl.rb: new file. * enc/trans/iso-8859-15-tbl.rb: new file. * enc/trans/eucjp-tbl.rb: new file. * enc/trans/sjis-tbl.rb: new file. * enc/trans/euckr-tbl.rb: new file. * enc/trans/utf_16_32.c: regenerated. * enc/trans/single_byte.c: regenerated. * enc/trans/japanese.c: regenerated. * enc/trans/korean.c: regenerated. [ruby-dev:35730] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
98 lines
1.5 KiB
Ruby
98 lines
1.5 KiB
Ruby
ISO_8859_5_TO_UCS_TBL = [
|
|
["A0",0xA0],
|
|
["A1",0x401],
|
|
["A2",0x402],
|
|
["A3",0x403],
|
|
["A4",0x404],
|
|
["A5",0x405],
|
|
["A6",0x406],
|
|
["A7",0x407],
|
|
["A8",0x408],
|
|
["A9",0x409],
|
|
["AA",0x40A],
|
|
["AB",0x40B],
|
|
["AC",0x40C],
|
|
["AD",0xAD],
|
|
["AE",0x40E],
|
|
["AF",0x40F],
|
|
["B0",0x410],
|
|
["B1",0x411],
|
|
["B2",0x412],
|
|
["B3",0x413],
|
|
["B4",0x414],
|
|
["B5",0x415],
|
|
["B6",0x416],
|
|
["B7",0x417],
|
|
["B8",0x418],
|
|
["B9",0x419],
|
|
["BA",0x41A],
|
|
["BB",0x41B],
|
|
["BC",0x41C],
|
|
["BD",0x41D],
|
|
["BE",0x41E],
|
|
["BF",0x41F],
|
|
["C0",0x420],
|
|
["C1",0x421],
|
|
["C2",0x422],
|
|
["C3",0x423],
|
|
["C4",0x424],
|
|
["C5",0x425],
|
|
["C6",0x426],
|
|
["C7",0x427],
|
|
["C8",0x428],
|
|
["C9",0x429],
|
|
["CA",0x42A],
|
|
["CB",0x42B],
|
|
["CC",0x42C],
|
|
["CD",0x42D],
|
|
["CE",0x42E],
|
|
["CF",0x42F],
|
|
["D0",0x430],
|
|
["D1",0x431],
|
|
["D2",0x432],
|
|
["D3",0x433],
|
|
["D4",0x434],
|
|
["D5",0x435],
|
|
["D6",0x436],
|
|
["D7",0x437],
|
|
["D8",0x438],
|
|
["D9",0x439],
|
|
["DA",0x43A],
|
|
["DB",0x43B],
|
|
["DC",0x43C],
|
|
["DD",0x43D],
|
|
["DE",0x43E],
|
|
["DF",0x43F],
|
|
["E0",0x440],
|
|
["E1",0x441],
|
|
["E2",0x442],
|
|
["E3",0x443],
|
|
["E4",0x444],
|
|
["E5",0x445],
|
|
["E6",0x446],
|
|
["E7",0x447],
|
|
["E8",0x448],
|
|
["E9",0x449],
|
|
["EA",0x44A],
|
|
["EB",0x44B],
|
|
["EC",0x44C],
|
|
["ED",0x44D],
|
|
["EE",0x44E],
|
|
["EF",0x44F],
|
|
["F0",0x2116],
|
|
["F1",0x451],
|
|
["F2",0x452],
|
|
["F3",0x453],
|
|
["F4",0x454],
|
|
["F5",0x455],
|
|
["F6",0x456],
|
|
["F7",0x457],
|
|
["F8",0x458],
|
|
["F9",0x459],
|
|
["FA",0x45A],
|
|
["FB",0x45B],
|
|
["FC",0x45C],
|
|
["FD",0xA7],
|
|
["FE",0x45E],
|
|
["FF",0x45F],
|
|
]
|