Annotation of embedaddon/libiconv/lib/encodings_dos.def, revision 1.1.1.1
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.
16: If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
17: Fifth Floor, Boston, MA 02110-1301, USA. */
18:
19: /* Encodings used by system dependent locales on MSDOS. */
20:
21: DEFENCODING(( "CP437", /* IANA, JDK 1.1 */
22: "IBM437", /* IANA */
23: "437", /* IANA */
24: "csPC8CodePage437", /* IANA */
25: ),
26: cp437,
27: { cp437_mbtowc, NULL }, { cp437_wctomb, NULL })
28:
29: DEFENCODING(( "CP737", /* JDK 1.1 */
30: ),
31: cp737,
32: { cp737_mbtowc, NULL }, { cp737_wctomb, NULL })
33:
34: DEFENCODING(( "CP775", /* IANA, JDK 1.1 */
35: "IBM775", /* IANA */
36: "csPC775Baltic", /* IANA */
37: ),
38: cp775,
39: { cp775_mbtowc, NULL }, { cp775_wctomb, NULL })
40:
41: DEFENCODING(( "CP852", /* IANA, JDK 1.1 */
42: "IBM852", /* IANA */
43: "852", /* IANA */
44: "csPCp852", /* IANA */
45: ),
46: cp852,
47: { cp852_mbtowc, NULL }, { cp852_wctomb, NULL })
48:
49: DEFENCODING(( "CP853",
50: ),
51: cp853,
52: { cp853_mbtowc, NULL }, { cp853_wctomb, NULL })
53:
54: DEFENCODING(( "CP855", /* IANA, JDK 1.1 */
55: "IBM855", /* IANA */
56: "855", /* IANA */
57: "csIBM855", /* IANA */
58: ),
59: cp855,
60: { cp855_mbtowc, NULL }, { cp855_wctomb, NULL })
61:
62: DEFENCODING(( "CP857", /* IANA, JDK 1.1 */
63: "IBM857", /* IANA */
64: "857", /* IANA */
65: "csIBM857", /* IANA */
66: ),
67: cp857,
68: { cp857_mbtowc, NULL }, { cp857_wctomb, NULL })
69:
70: DEFENCODING(( "CP858", /* JDK 1.1.7 */
71: ),
72: cp858,
73: { cp858_mbtowc, NULL }, { cp858_wctomb, NULL })
74:
75: DEFENCODING(( "CP860", /* IANA, JDK 1.1 */
76: "IBM860", /* IANA */
77: "860", /* IANA */
78: "csIBM860", /* IANA */
79: ),
80: cp860,
81: { cp860_mbtowc, NULL }, { cp860_wctomb, NULL })
82:
83: DEFENCODING(( "CP861", /* IANA, JDK 1.1 */
84: "IBM861", /* IANA */
85: "861", /* IANA */
86: "CP-IS", /* IANA */
87: "csIBM861", /* IANA */
88: ),
89: cp861,
90: { cp861_mbtowc, NULL }, { cp861_wctomb, NULL })
91:
92: DEFENCODING(( "CP863", /* IANA, JDK 1.1 */
93: "IBM863", /* IANA */
94: "863", /* IANA */
95: "csIBM863", /* IANA */
96: ),
97: cp863,
98: { cp863_mbtowc, NULL }, { cp863_wctomb, NULL })
99:
100: DEFENCODING(( "CP864", /* IANA, JDK 1.1 */
101: "IBM864", /* IANA */
102: "csIBM864", /* IANA */
103: ),
104: cp864,
105: { cp864_mbtowc, NULL }, { cp864_wctomb, NULL })
106:
107: DEFENCODING(( "CP865", /* IANA, JDK 1.1 */
108: "IBM865", /* IANA */
109: "865", /* IANA */
110: "csIBM865", /* IANA */
111: ),
112: cp865,
113: { cp865_mbtowc, NULL }, { cp865_wctomb, NULL })
114:
115: DEFENCODING(( "CP869", /* IANA, JDK 1.1 */
116: "IBM869", /* IANA */
117: "869", /* IANA */
118: "CP-GR", /* IANA */
119: "csIBM869", /* IANA */
120: ),
121: cp869,
122: { cp869_mbtowc, NULL }, { cp869_wctomb, NULL })
123:
124: DEFENCODING(( "CP1125", /* ICU */
125: ),
126: cp1125,
127: { cp1125_mbtowc, NULL }, { cp1125_wctomb, NULL })
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>