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_2_TO_UCS_TBL = [
|
|
["A0",0xA0],
|
|
["A1",0x104],
|
|
["A2",0x2D8],
|
|
["A3",0x141],
|
|
["A4",0xA4],
|
|
["A5",0x13D],
|
|
["A6",0x15A],
|
|
["A7",0xA7],
|
|
["A8",0xA8],
|
|
["A9",0x160],
|
|
["AA",0x15E],
|
|
["AB",0x164],
|
|
["AC",0x179],
|
|
["AD",0xAD],
|
|
["AE",0x17D],
|
|
["AF",0x17B],
|
|
["B0",0xB0],
|
|
["B1",0x105],
|
|
["B2",0x2DB],
|
|
["B3",0x142],
|
|
["B4",0xB4],
|
|
["B5",0x13E],
|
|
["B6",0x15B],
|
|
["B7",0x2C7],
|
|
["B8",0xB8],
|
|
["B9",0x161],
|
|
["BA",0x15F],
|
|
["BB",0x165],
|
|
["BC",0x17A],
|
|
["BD",0x2DD],
|
|
["BE",0x17E],
|
|
["BF",0x17C],
|
|
["C0",0x154],
|
|
["C1",0xC1],
|
|
["C2",0xC2],
|
|
["C3",0x102],
|
|
["C4",0xC4],
|
|
["C5",0x139],
|
|
["C6",0x106],
|
|
["C7",0xC7],
|
|
["C8",0x10C],
|
|
["C9",0xC9],
|
|
["CA",0x118],
|
|
["CB",0xCB],
|
|
["CC",0x11A],
|
|
["CD",0xCD],
|
|
["CE",0xCE],
|
|
["CF",0x10E],
|
|
["D0",0x110],
|
|
["D1",0x143],
|
|
["D2",0x147],
|
|
["D3",0xD3],
|
|
["D4",0xD4],
|
|
["D5",0x150],
|
|
["D6",0xD6],
|
|
["D7",0xD7],
|
|
["D8",0x158],
|
|
["D9",0x16E],
|
|
["DA",0xDA],
|
|
["DB",0x170],
|
|
["DC",0xDC],
|
|
["DD",0xDD],
|
|
["DE",0x162],
|
|
["DF",0xDF],
|
|
["E0",0x155],
|
|
["E1",0xE1],
|
|
["E2",0xE2],
|
|
["E3",0x103],
|
|
["E4",0xE4],
|
|
["E5",0x13A],
|
|
["E6",0x107],
|
|
["E7",0xE7],
|
|
["E8",0x10D],
|
|
["E9",0xE9],
|
|
["EA",0x119],
|
|
["EB",0xEB],
|
|
["EC",0x11B],
|
|
["ED",0xED],
|
|
["EE",0xEE],
|
|
["EF",0x10F],
|
|
["F0",0x111],
|
|
["F1",0x144],
|
|
["F2",0x148],
|
|
["F3",0xF3],
|
|
["F4",0xF4],
|
|
["F5",0x151],
|
|
["F6",0xF6],
|
|
["F7",0xF7],
|
|
["F8",0x159],
|
|
["F9",0x16F],
|
|
["FA",0xFA],
|
|
["FB",0x171],
|
|
["FC",0xFC],
|
|
["FD",0xFD],
|
|
["FE",0x163],
|
|
["FF",0x2D9],
|
|
]
|