Initial import package mtools: Programs for accessing MS-DOS disks without mounting...
[pkgs/m/mtools.git] / codepages.c
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
23 Codepage_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          "\80\81\82\83\84\85\86\87\88\89\8a\8b\8c\8d\8e\8f"
104          "\90\91\92\93\94\95\96\97\98\99\9a\9b\9c\9d\9e\9f"
105          " ¡¢£¤¥¦§¨©ª«¬­®¯"
106          "°±²³´µ¶·¸¹º»¼½¾¿"
107          "ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏ"
108          "ÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞß"
109          "àáâãäåæçèéêëìíîï"
110          "ðñòóôõö÷øùúûüýþÿ",
111         },
112
113
114         { 0 }
115 };
116
117 #endif