1/*  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	},
56
57	{ 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	},
67
68	{ 860,
69	  "����������������"
70	  "��������������P�"
71	  "����������������"
72	  "_______________�"
73	  "________________"
74	  "________________"
75	  "abgpSs�tftod��_N"
76	  "=�<>||�~���Vn�__"
77	},
78
79	{ 863,
80	  "�������������_��"
81	  "���������������f"
82	  "|���� ���r������"
83	  "_______________�"
84	  "________________"
85	  "________________"
86	  "abgpSs�tftod��_N"
87	  "=�<>||�~���Vn�__"
88	},
89
90	{ 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
117#endif
118