Return to encodings_dos.def CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / libiconv / lib |
1.1 misho 1: /* Copyright (C) 2001-2002 Free Software Foundation, Inc.
2: This file is part of the GNU LIBICONV Library.
3:
4: The GNU LIBICONV Library is free software; you can redistribute it
5: and/or modify it under the terms of the GNU Library General Public
6: License as published by the Free Software Foundation; either version 2
7: of the License, or (at your option) any later version.
8:
9: The GNU LIBICONV Library is distributed in the hope that it will be
10: useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: Library General Public License for more details.
13:
14: You should have received a copy of the GNU Library General Public
15: License along with the GNU LIBICONV Library; see the file COPYING.LIB.
1.1.1.2 ! misho 16: If not, see <https://www.gnu.org/licenses/>. */
1.1 misho 17:
18: /* Encodings used by system dependent locales on MSDOS. */
19:
20: DEFENCODING(( "CP437", /* IANA, JDK 1.1 */
21: "IBM437", /* IANA */
22: "437", /* IANA */
23: "csPC8CodePage437", /* IANA */
24: ),
25: cp437,
26: { cp437_mbtowc, NULL }, { cp437_wctomb, NULL })
27:
28: DEFENCODING(( "CP737", /* JDK 1.1 */
29: ),
30: cp737,
31: { cp737_mbtowc, NULL }, { cp737_wctomb, NULL })
32:
33: DEFENCODING(( "CP775", /* IANA, JDK 1.1 */
34: "IBM775", /* IANA */
35: "csPC775Baltic", /* IANA */
36: ),
37: cp775,
38: { cp775_mbtowc, NULL }, { cp775_wctomb, NULL })
39:
40: DEFENCODING(( "CP852", /* IANA, JDK 1.1 */
41: "IBM852", /* IANA */
42: "852", /* IANA */
43: "csPCp852", /* IANA */
44: ),
45: cp852,
46: { cp852_mbtowc, NULL }, { cp852_wctomb, NULL })
47:
48: DEFENCODING(( "CP853",
49: ),
50: cp853,
51: { cp853_mbtowc, NULL }, { cp853_wctomb, NULL })
52:
53: DEFENCODING(( "CP855", /* IANA, JDK 1.1 */
54: "IBM855", /* IANA */
55: "855", /* IANA */
56: "csIBM855", /* IANA */
57: ),
58: cp855,
59: { cp855_mbtowc, NULL }, { cp855_wctomb, NULL })
60:
61: DEFENCODING(( "CP857", /* IANA, JDK 1.1 */
62: "IBM857", /* IANA */
63: "857", /* IANA */
64: "csIBM857", /* IANA */
65: ),
66: cp857,
67: { cp857_mbtowc, NULL }, { cp857_wctomb, NULL })
68:
69: DEFENCODING(( "CP858", /* JDK 1.1.7 */
70: ),
71: cp858,
72: { cp858_mbtowc, NULL }, { cp858_wctomb, NULL })
73:
74: DEFENCODING(( "CP860", /* IANA, JDK 1.1 */
75: "IBM860", /* IANA */
76: "860", /* IANA */
77: "csIBM860", /* IANA */
78: ),
79: cp860,
80: { cp860_mbtowc, NULL }, { cp860_wctomb, NULL })
81:
82: DEFENCODING(( "CP861", /* IANA, JDK 1.1 */
83: "IBM861", /* IANA */
84: "861", /* IANA */
85: "CP-IS", /* IANA */
86: "csIBM861", /* IANA */
87: ),
88: cp861,
89: { cp861_mbtowc, NULL }, { cp861_wctomb, NULL })
90:
91: DEFENCODING(( "CP863", /* IANA, JDK 1.1 */
92: "IBM863", /* IANA */
93: "863", /* IANA */
94: "csIBM863", /* IANA */
95: ),
96: cp863,
97: { cp863_mbtowc, NULL }, { cp863_wctomb, NULL })
98:
99: DEFENCODING(( "CP864", /* IANA, JDK 1.1 */
100: "IBM864", /* IANA */
101: "csIBM864", /* IANA */
102: ),
103: cp864,
104: { cp864_mbtowc, NULL }, { cp864_wctomb, NULL })
105:
106: DEFENCODING(( "CP865", /* IANA, JDK 1.1 */
107: "IBM865", /* IANA */
108: "865", /* IANA */
109: "csIBM865", /* IANA */
110: ),
111: cp865,
112: { cp865_mbtowc, NULL }, { cp865_wctomb, NULL })
113:
114: DEFENCODING(( "CP869", /* IANA, JDK 1.1 */
115: "IBM869", /* IANA */
116: "869", /* IANA */
117: "CP-GR", /* IANA */
118: "csIBM869", /* IANA */
119: ),
120: cp869,
121: { cp869_mbtowc, NULL }, { cp869_wctomb, NULL })
122:
123: DEFENCODING(( "CP1125", /* ICU */
124: ),
125: cp1125,
126: { cp1125_mbtowc, NULL }, { cp1125_wctomb, NULL })