xref: /illumos-gate/usr/src/cmd/sunpc/sys/dos_iso.h (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  *
22*7c478bd9Sstevel@tonic-gate  * Copyright 2000 Sun Microsystems, Inc.  All rights reserved.
23*7c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
24*7c478bd9Sstevel@tonic-gate  */
25*7c478bd9Sstevel@tonic-gate 
26*7c478bd9Sstevel@tonic-gate /*
27*7c478bd9Sstevel@tonic-gate  *  dos_iso
28*7c478bd9Sstevel@tonic-gate  *
29*7c478bd9Sstevel@tonic-gate  *  created by eddy bell 8-14-89
30*7c478bd9Sstevel@tonic-gate  */
31*7c478bd9Sstevel@tonic-gate 
32*7c478bd9Sstevel@tonic-gate #define		CODE_PAGE_US		1	/* code page 437 */
33*7c478bd9Sstevel@tonic-gate #define		CODE_PAGE_MULTILINGUAL	2	/* code page 850 */
34*7c478bd9Sstevel@tonic-gate #define		CODE_PAGE_PORTUGAL	3	/* code page 860 */
35*7c478bd9Sstevel@tonic-gate #define		CODE_PAGE_CANADA_FRENCH	4	/* code page 863 */
36*7c478bd9Sstevel@tonic-gate #define		CODE_PAGE_NORWAY	5	/* code page 865 */
37*7c478bd9Sstevel@tonic-gate 
38*7c478bd9Sstevel@tonic-gate #define		IN_FILE			0	/* in file       */
39*7c478bd9Sstevel@tonic-gate #define		OUT_FILE		1	/* out file      */
40*7c478bd9Sstevel@tonic-gate 
41*7c478bd9Sstevel@tonic-gate #ifdef old_table
42*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso_cp_860[256] = {	/*Portugal code page*/
43*7c478bd9Sstevel@tonic-gate 	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 07 */
44*7c478bd9Sstevel@tonic-gate 	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 0f */
45*7c478bd9Sstevel@tonic-gate 	0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, /* 10 - 17 */
46*7c478bd9Sstevel@tonic-gate 	0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 1f */
47*7c478bd9Sstevel@tonic-gate 	0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 27 */
48*7c478bd9Sstevel@tonic-gate 	0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 2f */
49*7c478bd9Sstevel@tonic-gate 	0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 37 */
50*7c478bd9Sstevel@tonic-gate 	0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 3f */
51*7c478bd9Sstevel@tonic-gate 	0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 47 */
52*7c478bd9Sstevel@tonic-gate 	0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 4f */
53*7c478bd9Sstevel@tonic-gate 	0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 57 */
54*7c478bd9Sstevel@tonic-gate 	0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 5f */
55*7c478bd9Sstevel@tonic-gate 	0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 67 */
56*7c478bd9Sstevel@tonic-gate 	0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 6f */
57*7c478bd9Sstevel@tonic-gate 	0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 77 */
58*7c478bd9Sstevel@tonic-gate 	0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, /* 78 - 7f */
59*7c478bd9Sstevel@tonic-gate 	0xc7, 0xfc, 0xe9, 0xe2, 0xe4, 0xe0, 0xe5, 0xe7, /* 80 - 87 */
60*7c478bd9Sstevel@tonic-gate 	0xea, 0xeb, 0xe8, 0xef, 0xee, 0xec, 0xc4, 0xc5, /* 88 - 8f */
61*7c478bd9Sstevel@tonic-gate 	0xc9, 0xe6, 0xc6, 0xf4, 0xf6, 0xf2, 0xfb, 0xf9, /* 90 - 97 */
62*7c478bd9Sstevel@tonic-gate 	0xff, 0xd6, 0xdc, 0xa2, 0xa3, 0xa5, 0xa9, 0xd2, /* 98 - 9f */
63*7c478bd9Sstevel@tonic-gate 	0xe1, 0xed, 0xf3, 0xfa, 0xf1, 0xd1, 0xaa, 0xba, /* a0 - a7 */
64*7c478bd9Sstevel@tonic-gate 	0xbf, 0xd3, 0xac, 0xbd, 0xbc, 0xa1, 0xab, 0xbb, /* a8 - af */
65*7c478bd9Sstevel@tonic-gate 	0x80, 0x81, 0x82, 0xa6, 0x83, 0x84, 0x85, 0x86, /* b0 - b7 */
66*7c478bd9Sstevel@tonic-gate 	0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, /* b8 - bf */
67*7c478bd9Sstevel@tonic-gate 	0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, /* c0 - c7 */
68*7c478bd9Sstevel@tonic-gate 	0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* c8 - cf */
69*7c478bd9Sstevel@tonic-gate 	0x9f, 0xa7, 0xd4, 0xd5, 0xd7, 0xd8, 0xd9, 0xda, /* d0 - d7 */
70*7c478bd9Sstevel@tonic-gate 	0xdb, 0xa8, 0xa4, 0xad, 0xae, 0xdd, 0xe3, 0xaf, /* d8 - df */
71*7c478bd9Sstevel@tonic-gate 	0xb3, 0xb4, 0xb6, 0xb7, 0xb8, 0xb9, 0xb5, 0xbe, /* e0 - e7 */
72*7c478bd9Sstevel@tonic-gate 	0xde, 0xc0, 0xc1, 0xf0, 0xc2, 0xf8, 0xc3, 0xc8, /* e8 - ef */
73*7c478bd9Sstevel@tonic-gate 	0xca, 0xb1, 0xcb, 0xcc, 0xcd, 0xce, 0xf7, 0xcf, /* f0 - f7 */
74*7c478bd9Sstevel@tonic-gate 	0xb0, 0xd0, 0xdf, 0xf5, 0xfd, 0xb2, 0xfe, 0xa0, /* f8 - ff */
75*7c478bd9Sstevel@tonic-gate 	};
76*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso[256] = {	/*United States code page  base - codepage diffs */
77*7c478bd9Sstevel@tonic-gate 	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 07 */
78*7c478bd9Sstevel@tonic-gate 	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 0f */
79*7c478bd9Sstevel@tonic-gate 	0x10, 0x11, 0x12, 0x13, 0xb6, 0xa7, 0x16, 0x17, /* 10 - 17 */
80*7c478bd9Sstevel@tonic-gate 	0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 1f */
81*7c478bd9Sstevel@tonic-gate 	0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 27 */
82*7c478bd9Sstevel@tonic-gate 	0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 2f */
83*7c478bd9Sstevel@tonic-gate 	0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 37 */
84*7c478bd9Sstevel@tonic-gate 	0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 3f */
85*7c478bd9Sstevel@tonic-gate 	0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 47 */
86*7c478bd9Sstevel@tonic-gate 	0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 4f */
87*7c478bd9Sstevel@tonic-gate 	0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 57 */
88*7c478bd9Sstevel@tonic-gate 	0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 5f */
89*7c478bd9Sstevel@tonic-gate 	0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 67 */
90*7c478bd9Sstevel@tonic-gate 	0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 6f */
91*7c478bd9Sstevel@tonic-gate 	0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 77 */
92*7c478bd9Sstevel@tonic-gate 	0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0xfff, /* 78 - 7f */
93*7c478bd9Sstevel@tonic-gate 	0xc7, 0xfc, 0xe9, 0xe2, 0xfff, 0xe0, 0xfff, 0xe7, /* 80 - 87 */
94*7c478bd9Sstevel@tonic-gate 	0xea, 0xfff, 0xe8, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, /* 88 - 8f */
95*7c478bd9Sstevel@tonic-gate 	0xc9, 0xfff, 0xfff, 0xf4, 0xfff, 0xfff, 0xfff, 0xfff, /* 90 - 97 */
96*7c478bd9Sstevel@tonic-gate 	0xfff, 0xfff, 0xdc, 0xfff, 0xa3, 0xfff, 0xfff, 0xfff, /* 98 - 9f */
97*7c478bd9Sstevel@tonic-gate 	0xfff, 0xfff, 0xf3, 0xfa, 0xfff, 0xfff, 0xfff, 0xfff, /* a0 - a7 */
98*7c478bd9Sstevel@tonic-gate 	0xfff, 0xfff, 0xac, 0xbd, 0xbc, 0xfff, 0xab, 0xfff, /* a8 - af */
99*7c478bd9Sstevel@tonic-gate 	0x97, 0x98, 0x99, 0xfe, 0xfff, 0xfff, 0xfff, 0xfff, /* b0 - b7 */
100*7c478bd9Sstevel@tonic-gate 	0xfff, 0xa0, 0xa6, 0xa9, 0xad, 0xfff, 0xfff, 0xfff, /* b8 - bf */
101*7c478bd9Sstevel@tonic-gate 	0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, /* c0 - c7 */
102*7c478bd9Sstevel@tonic-gate 	0xae, 0xd0, 0xd7, 0xdd, 0xde, 0xfff, 0xf0, 0xfff, /* c8 - cf */
103*7c478bd9Sstevel@tonic-gate 	0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, 0xfff, /* d0 - d7 */
104*7c478bd9Sstevel@tonic-gate 	0xfff, 0xfff, 0xfff, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* d8 - df */
105*7c478bd9Sstevel@tonic-gate 	0x80, 0xdf, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* e0 - e7 */
106*7c478bd9Sstevel@tonic-gate 	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* e8 - ef */
107*7c478bd9Sstevel@tonic-gate 	0x14, 0xb1, 0xfff, 0xfff, 0x9f, 0x15, 0xf7, 0x95, /* f0 - f7 */
108*7c478bd9Sstevel@tonic-gate 	0xb0, 0xb7, 0x94, 0x93, 0x92, 0xb2, 0x91, 0x90, /* f8 - ff */
109*7c478bd9Sstevel@tonic-gate 	};
110*7c478bd9Sstevel@tonic-gate 
111*7c478bd9Sstevel@tonic-gate #endif
112*7c478bd9Sstevel@tonic-gate 
113*7c478bd9Sstevel@tonic-gate 
114*7c478bd9Sstevel@tonic-gate 
115*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso_cp_437[256] = {	/*United States code page*/
116*7c478bd9Sstevel@tonic-gate 	0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 07 */
117*7c478bd9Sstevel@tonic-gate 	0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 0f */
118*7c478bd9Sstevel@tonic-gate 	0x10, 0x11, 0x12, 0x13, 0xb6, 0xa7, 0x16, 0x17, /* 10 - 17 */
119*7c478bd9Sstevel@tonic-gate 	0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 1f */
120*7c478bd9Sstevel@tonic-gate 	0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 27 */
121*7c478bd9Sstevel@tonic-gate 	0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 2f */
122*7c478bd9Sstevel@tonic-gate 	0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 37 */
123*7c478bd9Sstevel@tonic-gate 	0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 3f */
124*7c478bd9Sstevel@tonic-gate 	0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 47 */
125*7c478bd9Sstevel@tonic-gate 	0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 4f */
126*7c478bd9Sstevel@tonic-gate 	0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 57 */
127*7c478bd9Sstevel@tonic-gate 	0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 5f */
128*7c478bd9Sstevel@tonic-gate 	0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 67 */
129*7c478bd9Sstevel@tonic-gate 	0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 6f */
130*7c478bd9Sstevel@tonic-gate 	0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 77 */
131*7c478bd9Sstevel@tonic-gate 	0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x81, /* 78 - 7f */
132*7c478bd9Sstevel@tonic-gate 	0xc7, 0xfc, 0xe9, 0xe2, 0xe4, 0xe0, 0xe5, 0xe7, /* 80 - 87 */
133*7c478bd9Sstevel@tonic-gate 	0xea, 0xeb, 0xe8, 0xef, 0xee, 0xec, 0xc4, 0xc5, /* 88 - 8f */
134*7c478bd9Sstevel@tonic-gate 	0xc9, 0xe6, 0xc6, 0xf4, 0xf6, 0xf2, 0xfb, 0xf9, /* 90 - 97 */
135*7c478bd9Sstevel@tonic-gate 	0xff, 0xd6, 0xdc, 0xa2, 0xa3, 0xa5, 0xa4, 0x96, /* 98 - 9f */
136*7c478bd9Sstevel@tonic-gate 	0xe1, 0xed, 0xf3, 0xfa, 0xf1, 0xd1, 0xaa, 0xba, /* a0 - a7 */
137*7c478bd9Sstevel@tonic-gate 	0xbf, 0xa8, 0xac, 0xbd, 0xbc, 0xa1, 0xab, 0xaf, /* a8 - af */
138*7c478bd9Sstevel@tonic-gate 	0x97, 0x98, 0x99, 0xfe, 0xb3, 0xb4, 0xb5, 0xb8, /* b0 - b7 */
139*7c478bd9Sstevel@tonic-gate 	0xb9, 0xa0, 0xa6, 0xa9, 0xad, 0xbb, 0xbe, 0xc0, /* b8 - bf */
140*7c478bd9Sstevel@tonic-gate 	0xc1, 0xc2, 0xc3, 0xc8, 0xfd, 0xca, 0xcb, 0xcc, /* c0 - c7 */
141*7c478bd9Sstevel@tonic-gate 	0xae, 0xd0, 0xd7, 0xdd, 0xde, 0xcd, 0xf0, 0xce, /* c8 - cf */
142*7c478bd9Sstevel@tonic-gate 	0xcf, 0xd2, 0xd3, 0xd4, 0xd5, 0xd8, 0xd9, 0xda, /* d0 - d7 */
143*7c478bd9Sstevel@tonic-gate 	0xdb, 0xe3, 0xf5, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* d8 - df */
144*7c478bd9Sstevel@tonic-gate 	0x80, 0xdf, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* e0 - e7 */
145*7c478bd9Sstevel@tonic-gate 	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* e8 - ef */
146*7c478bd9Sstevel@tonic-gate 	0x14, 0xb1, 0xf8, 0x7f, 0x9f, 0x15, 0xf7, 0x95, /* f0 - f7 */
147*7c478bd9Sstevel@tonic-gate 	0xb0, 0xb7, 0x94, 0x93, 0x92, 0xb2, 0x91, 0x90, /* f8 - ff */
148*7c478bd9Sstevel@tonic-gate 	};
149*7c478bd9Sstevel@tonic-gate 
150*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso_cp_850[256] = {	/* Multilingual code page */
151*7c478bd9Sstevel@tonic-gate         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 08 */
152*7c478bd9Sstevel@tonic-gate         0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 10 */
153*7c478bd9Sstevel@tonic-gate         0x10, 0x11, 0x12, 0x13, 0xb6, 0xa7, 0x16, 0x17, /* 10 - 18 */
154*7c478bd9Sstevel@tonic-gate         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 20 */
155*7c478bd9Sstevel@tonic-gate         0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 28 */
156*7c478bd9Sstevel@tonic-gate         0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 30 */
157*7c478bd9Sstevel@tonic-gate         0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 38 */
158*7c478bd9Sstevel@tonic-gate         0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 40 */
159*7c478bd9Sstevel@tonic-gate         0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 48 */
160*7c478bd9Sstevel@tonic-gate         0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 50 */
161*7c478bd9Sstevel@tonic-gate         0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 58 */
162*7c478bd9Sstevel@tonic-gate         0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 60 */
163*7c478bd9Sstevel@tonic-gate         0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 68 */
164*7c478bd9Sstevel@tonic-gate         0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 70 */
165*7c478bd9Sstevel@tonic-gate         0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 78 */
166*7c478bd9Sstevel@tonic-gate         0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x81, /* 78 - 80 */
167*7c478bd9Sstevel@tonic-gate         0xc7, 0xfc, 0xe9, 0xe2, 0xe4, 0xe0, 0xe5, 0xe7, /* 80 - 88 */
168*7c478bd9Sstevel@tonic-gate         0xea, 0xeb, 0xe8, 0xef, 0xee, 0xec, 0xc4, 0xc5, /* 88 - 90 */
169*7c478bd9Sstevel@tonic-gate         0xc9, 0xe6, 0xc6, 0xf4, 0xf6, 0xf2, 0xfb, 0xf9, /* 90 - 98 */
170*7c478bd9Sstevel@tonic-gate         0xff, 0xd6, 0xdc, 0xf8, 0xa3, 0xd8, 0xd7, 0x96, /* 98 - a0 */
171*7c478bd9Sstevel@tonic-gate         0xe1, 0xed, 0xf3, 0xfa, 0xf1, 0xd1, 0xaa, 0xba, /* a0 - a8 */
172*7c478bd9Sstevel@tonic-gate         0xbf, 0xae, 0xac, 0xbd, 0xbc, 0xa1, 0xab, 0xbb, /* a8 - b0 */
173*7c478bd9Sstevel@tonic-gate         0x97, 0x98, 0x99, 0x14, 0x15, 0xc1, 0xc2, 0xc0, /* b0 - b8 */
174*7c478bd9Sstevel@tonic-gate         0xa9, 0xa0, 0x7f, 0x80, 0xad, 0xa2, 0xa5, 0x82, /* b8 - c0 */
175*7c478bd9Sstevel@tonic-gate         0x83, 0x84, 0x85, 0x87, 0x88, 0x89, 0xe3, 0xc3, /* c0 - c8 */
176*7c478bd9Sstevel@tonic-gate         0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, 0x92, 0xa4, /* c8 - d0 */
177*7c478bd9Sstevel@tonic-gate         0xf0, 0xd0, 0xca, 0xcb, 0xc8, 0x93, 0xcd, 0xce, /* d0 - d8 */
178*7c478bd9Sstevel@tonic-gate         0xcf, 0x94, 0x95, 0x9a, 0x9b, 0xa6, 0xcc, 0x9e, /* d8 - e0 */
179*7c478bd9Sstevel@tonic-gate         0xd3, 0xdf, 0xd4, 0xd2, 0xf5, 0xd5, 0x86, 0xfe, /* e0 - e8 */
180*7c478bd9Sstevel@tonic-gate         0xde, 0xda, 0xdb, 0xd9, 0xfd, 0xdd, 0xaf, 0xb4, /* e8 - f0 */
181*7c478bd9Sstevel@tonic-gate         0x9c, 0xb1, 0x9d, 0xbe, 0x9f, 0xb5, 0xf7, 0xb8, /* f0 - f8 */
182*7c478bd9Sstevel@tonic-gate         0xb0, 0xa8, 0xb7, 0xb9, 0xb3, 0xb2, 0x91, 0x90, /* f8 - 100 */
183*7c478bd9Sstevel@tonic-gate 	};
184*7c478bd9Sstevel@tonic-gate 
185*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso_cp_860[256] = {	/* Portugal code page */
186*7c478bd9Sstevel@tonic-gate         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 08 */
187*7c478bd9Sstevel@tonic-gate         0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 10 */
188*7c478bd9Sstevel@tonic-gate         0x10, 0x11, 0x12, 0x13, 0xb6, 0xa7, 0x16, 0x17, /* 10 - 18 */
189*7c478bd9Sstevel@tonic-gate         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 20 */
190*7c478bd9Sstevel@tonic-gate         0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 28 */
191*7c478bd9Sstevel@tonic-gate         0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 30 */
192*7c478bd9Sstevel@tonic-gate         0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 38 */
193*7c478bd9Sstevel@tonic-gate         0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 40 */
194*7c478bd9Sstevel@tonic-gate         0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 48 */
195*7c478bd9Sstevel@tonic-gate         0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 50 */
196*7c478bd9Sstevel@tonic-gate         0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 58 */
197*7c478bd9Sstevel@tonic-gate         0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 60 */
198*7c478bd9Sstevel@tonic-gate         0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 68 */
199*7c478bd9Sstevel@tonic-gate         0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 70 */
200*7c478bd9Sstevel@tonic-gate         0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 78 */
201*7c478bd9Sstevel@tonic-gate         0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x96, /* 78 - 80 */
202*7c478bd9Sstevel@tonic-gate         0xc7, 0xfc, 0xe9, 0xe2, 0xe3, 0xe0, 0xc1, 0xe7, /* 80 - 88 */
203*7c478bd9Sstevel@tonic-gate         0xea, 0xca, 0xe8, 0xcd, 0xd4, 0xec, 0xc3, 0xc2, /* 88 - 90 */
204*7c478bd9Sstevel@tonic-gate         0xc9, 0xc0, 0xc8, 0xf4, 0xf5, 0xf2, 0xda, 0xf9, /* 90 - 98 */
205*7c478bd9Sstevel@tonic-gate         0xcc, 0xd5, 0xdc, 0xa2, 0xa3, 0xd9, 0x7f, 0xd3, /* 98 - a0 */
206*7c478bd9Sstevel@tonic-gate         0xe1, 0xed, 0xf3, 0xfa, 0xf1, 0xd1, 0xaa, 0xba, /* a0 - a8 */
207*7c478bd9Sstevel@tonic-gate         0xbf, 0xd2, 0xac, 0xbd, 0xbc, 0xa1, 0xab, 0xbb, /* a8 - b0 */
208*7c478bd9Sstevel@tonic-gate         0x97, 0x98, 0x99, 0xfe, 0x81, 0xa4, 0xa5, 0xa8, /* b0 - b8 */
209*7c478bd9Sstevel@tonic-gate         0xaf, 0xa0, 0xa6, 0xa9, 0xad, 0xb3, 0xb4, 0xb5, /* b8 - c0 */
210*7c478bd9Sstevel@tonic-gate         0xb8, 0xb9, 0xbe, 0xc4, 0xc5, 0xc6, 0xcb, 0xce, /* c0 - c8 */
211*7c478bd9Sstevel@tonic-gate         0xae, 0xd0, 0xd7, 0xdd, 0xde, 0xcf, 0xf0, 0xd6, /* c8 - d0 */
212*7c478bd9Sstevel@tonic-gate         0xd8, 0xdb, 0xe4, 0xe5, 0xe6, 0xeb, 0xee, 0xef, /* d0 - d8 */
213*7c478bd9Sstevel@tonic-gate         0xf6, 0xf8, 0xfb, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* d8 - e0 */
214*7c478bd9Sstevel@tonic-gate         0x80, 0xdf, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* e0 - e8 */
215*7c478bd9Sstevel@tonic-gate         0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* e8 - f0 */
216*7c478bd9Sstevel@tonic-gate         0x14, 0xb1, 0xfd, 0xff, 0x9f, 0x15, 0xf7, 0x95, /* f0 - f8 */
217*7c478bd9Sstevel@tonic-gate         0xb0, 0xb7, 0x94, 0x93, 0x92, 0xb2, 0x91, 0x90, /* f8 - 100 */
218*7c478bd9Sstevel@tonic-gate 	};
219*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso_cp_863[256] = {	/*Canada-French code page*/
220*7c478bd9Sstevel@tonic-gate         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 08 */
221*7c478bd9Sstevel@tonic-gate         0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 10 */
222*7c478bd9Sstevel@tonic-gate         0x10, 0x11, 0x12, 0x13, 0xb6, 0xa7, 0x16, 0x17, /* 10 - 18 */
223*7c478bd9Sstevel@tonic-gate         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 20 */
224*7c478bd9Sstevel@tonic-gate         0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 28 */
225*7c478bd9Sstevel@tonic-gate         0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 30 */
226*7c478bd9Sstevel@tonic-gate         0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 38 */
227*7c478bd9Sstevel@tonic-gate         0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 40 */
228*7c478bd9Sstevel@tonic-gate         0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 48 */
229*7c478bd9Sstevel@tonic-gate         0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 50 */
230*7c478bd9Sstevel@tonic-gate         0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 58 */
231*7c478bd9Sstevel@tonic-gate         0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 60 */
232*7c478bd9Sstevel@tonic-gate         0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 68 */
233*7c478bd9Sstevel@tonic-gate         0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 70 */
234*7c478bd9Sstevel@tonic-gate         0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 78 */
235*7c478bd9Sstevel@tonic-gate         0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, /* 78 - 80 */
236*7c478bd9Sstevel@tonic-gate         0xc7, 0xfc, 0xe9, 0xe2, 0xc2, 0xe0, 0x81, 0xe7, /* 80 - 88 */
237*7c478bd9Sstevel@tonic-gate         0xea, 0xeb, 0xe8, 0xef, 0xee, 0xa1, 0xc0, 0xa5, /* 88 - 90 */
238*7c478bd9Sstevel@tonic-gate         0xc9, 0xc8, 0xca, 0xf4, 0xcb, 0xcf, 0xfb, 0xf9, /* 90 - 98 */
239*7c478bd9Sstevel@tonic-gate         0xa4, 0xd4, 0xdc, 0xa2, 0xa3, 0xd9, 0xdb, 0x96, /* 98 - a0 */
240*7c478bd9Sstevel@tonic-gate         0xaa, 0xb4, 0xf3, 0xfa, 0xa8, 0xb8, 0xb3, 0xaf, /* a0 - a8 */
241*7c478bd9Sstevel@tonic-gate         0xce, 0xb5, 0xac, 0xbd, 0xbc, 0xbe, 0xab, 0xbb, /* a8 - b0 */
242*7c478bd9Sstevel@tonic-gate         0x97, 0x98, 0x99, 0xfe, 0xb9, 0xba, 0xbf, 0xc1, /* b0 - b8 */
243*7c478bd9Sstevel@tonic-gate         0xc3, 0xa0, 0xa6, 0xa9, 0xad, 0xc4, 0xc5, 0xc6, /* b8 - c0 */
244*7c478bd9Sstevel@tonic-gate         0xcc, 0xcd, 0xd1, 0xd2, 0xd3, 0xd5, 0xd6, 0xd8, /* c0 - c8 */
245*7c478bd9Sstevel@tonic-gate         0xae, 0xd0, 0xd7, 0xdd, 0xde, 0xda, 0xf0, 0xe1, /* c8 - d0 */
246*7c478bd9Sstevel@tonic-gate         0xe3, 0xe4, 0xe5, 0xe6, 0xec, 0xed, 0xf1, 0xf2, /* d0 - d8 */
247*7c478bd9Sstevel@tonic-gate         0xf5, 0xf6, 0xf8, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* d8 - e0 */
248*7c478bd9Sstevel@tonic-gate         0x80, 0xdf, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* e0 - e8 */
249*7c478bd9Sstevel@tonic-gate         0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* e8 - f0 */
250*7c478bd9Sstevel@tonic-gate         0x14, 0xb1, 0xfd, 0xff, 0x9f, 0x15, 0xf7, 0x95, /* f0 - f8 */
251*7c478bd9Sstevel@tonic-gate         0xb0, 0xb7, 0x94, 0x93, 0x92, 0xb2, 0x91, 0x90, /* f8 - 100 */
252*7c478bd9Sstevel@tonic-gate 	};
253*7c478bd9Sstevel@tonic-gate unsigned char dos_to_iso_cp_865[256] = {	/*Norway code page*/
254*7c478bd9Sstevel@tonic-gate         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, /* 00 - 08 */
255*7c478bd9Sstevel@tonic-gate         0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, /* 08 - 10 */
256*7c478bd9Sstevel@tonic-gate         0x10, 0x11, 0x12, 0x13, 0xb6, 0xa7, 0x16, 0x17, /* 10 - 18 */
257*7c478bd9Sstevel@tonic-gate         0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, /* 18 - 20 */
258*7c478bd9Sstevel@tonic-gate         0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, /* 20 - 28 */
259*7c478bd9Sstevel@tonic-gate         0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d, 0x2e, 0x2f, /* 28 - 30 */
260*7c478bd9Sstevel@tonic-gate         0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, /* 30 - 38 */
261*7c478bd9Sstevel@tonic-gate         0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, /* 38 - 40 */
262*7c478bd9Sstevel@tonic-gate         0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, /* 40 - 48 */
263*7c478bd9Sstevel@tonic-gate         0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, /* 48 - 50 */
264*7c478bd9Sstevel@tonic-gate         0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, /* 50 - 58 */
265*7c478bd9Sstevel@tonic-gate         0x58, 0x59, 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, /* 58 - 60 */
266*7c478bd9Sstevel@tonic-gate         0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67, /* 60 - 68 */
267*7c478bd9Sstevel@tonic-gate         0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f, /* 68 - 70 */
268*7c478bd9Sstevel@tonic-gate         0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77, /* 70 - 78 */
269*7c478bd9Sstevel@tonic-gate         0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f, /* 78 - 80 */
270*7c478bd9Sstevel@tonic-gate         0xc7, 0xfc, 0xe9, 0xe2, 0xe4, 0xe0, 0xe5, 0xe7, /* 80 - 88 */
271*7c478bd9Sstevel@tonic-gate         0xea, 0xeb, 0xe8, 0xef, 0xee, 0xec, 0xc4, 0xc5, /* 88 - 90 */
272*7c478bd9Sstevel@tonic-gate         0xc9, 0xe6, 0xc6, 0xf4, 0xf6, 0xf2, 0xfb, 0xf9, /* 90 - 98 */
273*7c478bd9Sstevel@tonic-gate         0xff, 0xd6, 0xdc, 0xf8, 0xa3, 0xd8, 0x81, 0x96, /* 98 - a0 */
274*7c478bd9Sstevel@tonic-gate         0xe1, 0xed, 0xf3, 0xfa, 0xf1, 0xd1, 0xaa, 0xba, /* a0 - a8 */
275*7c478bd9Sstevel@tonic-gate         0xbf, 0xa2, 0xac, 0xbd, 0xbc, 0xa1, 0xab, 0xa4, /* a8 - b0 */
276*7c478bd9Sstevel@tonic-gate         0x97, 0x98, 0x99, 0xfe, 0xa5, 0xa8, 0xaf, 0xb3, /* b0 - b8 */
277*7c478bd9Sstevel@tonic-gate         0xb4, 0xa0, 0xa6, 0xa9, 0xad, 0xb5, 0xb8, 0xb9, /* b8 - c0 */
278*7c478bd9Sstevel@tonic-gate         0xbb, 0xbe, 0xc0, 0xc1, 0xc2, 0xc3, 0xc8, 0xca, /* c0 - c8 */
279*7c478bd9Sstevel@tonic-gate         0xae, 0xd0, 0xd7, 0xdd, 0xde, 0xcb, 0xf0, 0xcc, /* c8 - d0 */
280*7c478bd9Sstevel@tonic-gate         0xcd, 0xce, 0xcf, 0xd2, 0xd3, 0xd4, 0xd5, 0xd9, /* d0 - d8 */
281*7c478bd9Sstevel@tonic-gate         0xda, 0xdb, 0xe3, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, /* d8 - e0 */
282*7c478bd9Sstevel@tonic-gate         0x80, 0xdf, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, /* e0 - e8 */
283*7c478bd9Sstevel@tonic-gate         0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, /* e8 - f0 */
284*7c478bd9Sstevel@tonic-gate         0x14, 0xb1, 0xf5, 0xfd, 0x9f, 0x15, 0xf7, 0x95, /* f0 - f8 */
285*7c478bd9Sstevel@tonic-gate         0xb0, 0xb7, 0x94, 0x93, 0x92, 0xb2, 0x91, 0x90, /* f8 - 100 */
286*7c478bd9Sstevel@tonic-gate 	};
287*7c478bd9Sstevel@tonic-gate 
288*7c478bd9Sstevel@tonic-gate unsigned char dos_to_lower_xlate_cp_437[8] = {	/*United States code page*/
289*7c478bd9Sstevel@tonic-gate         0x81, /* u-umlaut */
290*7c478bd9Sstevel@tonic-gate         0x82, /* e-acute */
291*7c478bd9Sstevel@tonic-gate         0x84, /* a-umlaut */
292*7c478bd9Sstevel@tonic-gate         0x86, /* a-circle */
293*7c478bd9Sstevel@tonic-gate         0x87, /* c-cidilla */
294*7c478bd9Sstevel@tonic-gate         0x91, /* ae */
295*7c478bd9Sstevel@tonic-gate         0x94, /* o-umlaut */
296*7c478bd9Sstevel@tonic-gate         0xa4, /* n-anyay */
297*7c478bd9Sstevel@tonic-gate        	};
298*7c478bd9Sstevel@tonic-gate 
299*7c478bd9Sstevel@tonic-gate unsigned char dos_to_lower_xlate_cp_850[8] = {	/*Multilingual code page*/
300*7c478bd9Sstevel@tonic-gate         0x81, /* u-umlaut */
301*7c478bd9Sstevel@tonic-gate         0x82, /* e-acute */
302*7c478bd9Sstevel@tonic-gate         0x84, /* a-umlaut */
303*7c478bd9Sstevel@tonic-gate         0x86, /* a-circle */
304*7c478bd9Sstevel@tonic-gate         0x87, /* c-cidilla */
305*7c478bd9Sstevel@tonic-gate         0x91, /* ae */
306*7c478bd9Sstevel@tonic-gate         0x94, /* o-umlaut */
307*7c478bd9Sstevel@tonic-gate         0xa4, /* n-anyay */
308*7c478bd9Sstevel@tonic-gate        	};
309*7c478bd9Sstevel@tonic-gate 
310*7c478bd9Sstevel@tonic-gate unsigned char dos_to_lower_xlate_cp_860[8] = {	/* Portugal code page */
311*7c478bd9Sstevel@tonic-gate         0x81, /* u-umlaut */
312*7c478bd9Sstevel@tonic-gate         0x82, /* e-acute */
313*7c478bd9Sstevel@tonic-gate         0x84, /* a-anyay */
314*7c478bd9Sstevel@tonic-gate         0x8f, /* a-hat */
315*7c478bd9Sstevel@tonic-gate         0x87, /* c-cidilla */
316*7c478bd9Sstevel@tonic-gate         0x92, /* e-` */
317*7c478bd9Sstevel@tonic-gate         0x94, /* o-anyay */
318*7c478bd9Sstevel@tonic-gate         0xa4, /* n-anyay */
319*7c478bd9Sstevel@tonic-gate 	};
320*7c478bd9Sstevel@tonic-gate 
321*7c478bd9Sstevel@tonic-gate unsigned char dos_to_lower_xlate_cp_863[8] = {	/*Canada-French code page*/
322*7c478bd9Sstevel@tonic-gate         0x81, /* u-umlaut */
323*7c478bd9Sstevel@tonic-gate         0x82, /* e-acute */
324*7c478bd9Sstevel@tonic-gate         0x85, /* a-` */
325*7c478bd9Sstevel@tonic-gate         0x8f, /* graphics */
326*7c478bd9Sstevel@tonic-gate         0x87, /* c-cidilla */
327*7c478bd9Sstevel@tonic-gate         0x88, /* e-^*/
328*7c478bd9Sstevel@tonic-gate         0x93, /* o-^ */
329*7c478bd9Sstevel@tonic-gate         0xa5, /* graphics */
330*7c478bd9Sstevel@tonic-gate 	};
331*7c478bd9Sstevel@tonic-gate 
332*7c478bd9Sstevel@tonic-gate unsigned char dos_to_lower_xlate_cp_865[8] = {	/*Norway code page*/
333*7c478bd9Sstevel@tonic-gate         0x81, /* u-umlaut */
334*7c478bd9Sstevel@tonic-gate         0x82, /* e-acute */
335*7c478bd9Sstevel@tonic-gate         0x84, /* a-umlaut */
336*7c478bd9Sstevel@tonic-gate         0x86, /* a-circle */
337*7c478bd9Sstevel@tonic-gate         0x87, /* c-cidilla */
338*7c478bd9Sstevel@tonic-gate         0x91, /* ae */
339*7c478bd9Sstevel@tonic-gate         0x94, /* o-umlaut */
340*7c478bd9Sstevel@tonic-gate         0xa4, /* n-anyay */
341*7c478bd9Sstevel@tonic-gate 	};
342*7c478bd9Sstevel@tonic-gate 
343