blob: ecb99ee1181b3a962f3e14abe35f609d308dd4fa [file] [log] [blame]
Alistair Delvabeaee832021-02-24 11:27:23 -08001/* Copyright 1996,1997,1999,2001,2002,2008,2009 Alain Knaff.
2 * This file is part of mtools.
3 *
4 * Mtools is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * Mtools is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with Mtools. If not, see <http://www.gnu.org/licenses/>.
16 *
17 */
18#include "config.h"
19
20#ifndef HAVE_ICONV_H
21#include "codepage.h"
22
23Codepage_t codepages[]= {
24 { 437,
25 "ÇüéâäàåçêëèïîìÄÅ"
26 "ÉæÆôöòûùÿÖÜ¢£¥Pf"
27 "áíóúñѪº¿r¬½¼¡«»"
28 "_______________¬"
29 "________________"
30 "________________"
31 "abgpSsµtftodøØ_N"
32 "=±<>||÷~°··Vn²__"
33 },
34
35 { 819,
36 "________________"
37 "________________"
38 " ¡¢£¤¥¦§¨©ª«¬­®¯"
39 "°±²³´µ¶·¸¹º»¼½¾¿"
40 "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ"
41 "ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß"
42 "àáâãäåæçèéêëìíîï"
43 "ðñòóôõö÷øùúûüýþÿ"
44 },
45
46 { 850,
47 "ÇüéâäàåçêëèïîìÄÅ"
48 "ÉæÆôöòûùÿÖÜø£Ø×_"
49 "áíóúñѪº¿®¬½¼¡«»"
50 "_____ÁÂÀ©____¢¥¬"
51 "______ãÃ_______¤"
52 "ðÐÉËÈiÍÎÏ____|I_"
53 "ÓßÔÒõÕµþÞÚÙýÝÞ¯´"
54 "­±_¾¶§÷¸°¨·¹³²__"
55 },
Yi Kong39bbd962022-01-09 19:41:38 +080056
Alistair Delvabeaee832021-02-24 11:27:23 -080057 { 852,
58 "ÇüéâäucçlëÕõîZÄC"
59 "ÉLlôöLlSsÖÜTtL×c"
60 "áíóúAaZzEe zCs«»"
61 "_____ÁÂES____Zz¬"
62 "______Aa_______¤"
63 "ðÐDËdÑÍÎe_r__TU_"
64 "ÓßÔNnñSsRÚrUýÝt´"
65 "­~.~~§÷¸°¨·¹uRr_"
66 },
Yi Kong39bbd962022-01-09 19:41:38 +080067
Alistair Delvabeaee832021-02-24 11:27:23 -080068 { 860,
69 "ÇüéâãàåçêëèÍõìÃÂ"
70 "ÉÀÈôõòÚùÌÕÜ¢£ÙPÓ"
71 "áíóúñѪº¿Ò¬½¼¡«»"
72 "_______________¬"
73 "________________"
74 "________________"
75 "abgpSsµtftodøØ_N"
76 "=±<>||÷~°··Vn²__"
77 },
Yi Kong39bbd962022-01-09 19:41:38 +080078
Alistair Delvabeaee832021-02-24 11:27:23 -080079 { 863,
80 "ÇüéâÂà¶çêëèïî_À§"
81 "ÉÈÊôËÏûù¤ÔÜ¢£ÙÛf"
82 "|´óú¨ ³¯Îr¬½¼¾«»"
83 "_______________¬"
84 "________________"
85 "________________"
86 "abgpSsµtftodøØ_N"
87 "=±<>||÷~°··Vn²__"
88 },
Yi Kong39bbd962022-01-09 19:41:38 +080089
Alistair Delvabeaee832021-02-24 11:27:23 -080090 { 865,
91 "ÇüéâäàåçêëèïîìÄÅ"
92 "ÉæÆôöòûùÿÖÜø£ØPf"
93 "áíóúñѪº¿r¬½¼¡«¤"
94 "_______________¬"
95 "________________"
96 "________________"
97 "abgpSsµtftodøØ_N"
98 "=±<>||÷~°··Vn²__",
99 },
100
101 /* Taiwanese (Chinese Complex Character) support */
102 { 950,
103 "€‚ƒ„…†‡ˆ‰Š‹ŒŽ"
104 "‘’“”•–—˜™š›œžŸ"
105 " ¡¢£¤¥¦§¨©ª«¬­®¯"
106 "°±²³´µ¶·¸¹º»¼½¾¿"
107 "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ"
108 "ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß"
109 "àáâãäåæçèéêëìíîï"
110 "ðñòóôõö÷øùúûüýþÿ",
111 },
112
113
114 { 0 }
115};
116#else
117/* Should down ISO C forbids an empty translation unit warning [-Wpedantic]: */
118typedef int make_iso_compilers_happy;
119#endif