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 #ifdef USE_MOCK_CODEPAGES 24 Codepage_t codepages[]= { 25 { 850, 26 "" 27 }, 28 }; 29 #else 30 Codepage_t codepages[]= { 31 { 437, 32 "����������������" 33 "����������ܢ��Pf" 34 "�����Ѫ��r������" 35 "_______________�" 36 "________________" 37 "________________" 38 "abgpSs�tftod��_N" 39 "=�<>||�~���Vn�__" 40 }, 41 42 { 819, 43 "________________" 44 "________________" 45 "����������������" 46 "����������������" 47 "����������������" 48 "����������������" 49 "����������������" 50 "����������������" 51 }, 52 53 { 850, 54 "����������������" 55 "���������������_" 56 "�����Ѫ���������" 57 "_____����____���" 58 "______��_______�" 59 "�����i���____|I_" 60 "�����յ������ޯ�" 61 "��_�����������__" 62 }, 63 64 { 852, 65 "�����uc�l����Z�C" 66 "�Ll��LlSs��TtL�c" 67 "����AaZzEe zCs��" 68 "_____��ES____Zz�" 69 "______Aa_______�" 70 "��D�d���e_r__TU_" 71 "���Nn�SsR�rU��t�" 72 "�~.~~�������uRr_" 73 }, 74 75 { 860, 76 "����������������" 77 "����������ܢ��P�" 78 "�����Ѫ��Ҭ�����" 79 "_______________�" 80 "________________" 81 "________________" 82 "abgpSs�tftod��_N" 83 "=�<>||�~���Vn�__" 84 }, 85 86 { 863, 87 "������������_��" 88 "����������ܢ���f" 89 "|���� ���r������" 90 "_______________�" 91 "________________" 92 "________________" 93 "abgpSs�tftod��_N" 94 "=�<>||�~���Vn�__" 95 }, 96 97 { 865, 98 "����������������" 99 "��������������Pf" 100 "�����Ѫ��r������" 101 "_______________�" 102 "________________" 103 "________________" 104 "abgpSs�tftod��_N" 105 "=�<>||�~���Vn�__", 106 }, 107 108 /* Taiwanese (Chinese Complex Character) support */ 109 { 950, 110 "����������������" 111 "����������������" 112 "����������������" 113 "����������������" 114 "����������������" 115 "����������������" 116 "����������������" 117 "����������������", 118 }, 119 120 121 { 0 } 122 }; 123 #endif 124 125 #else 126 /* Should down ISO C forbids an empty translation unit warning [-Wpedantic]: */ 127 typedef int make_iso_compilers_happy; 128 #endif 129