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