xref: /titanic_50/usr/src/cmd/geniconvtbl/samples/ISO8859-1_to_UTF-8.src (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate// ident	"%Z%%M%	%I%	%E% SMI"
2*7c478bd9Sstevel@tonic-gate// Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
3*7c478bd9Sstevel@tonic-gate// Use is subject to license terms.
4*7c478bd9Sstevel@tonic-gate//
5*7c478bd9Sstevel@tonic-gate// CDDL HEADER START
6*7c478bd9Sstevel@tonic-gate//
7*7c478bd9Sstevel@tonic-gate// The contents of this file are subject to the terms of the
8*7c478bd9Sstevel@tonic-gate// Common Development and Distribution License, Version 1.0 only
9*7c478bd9Sstevel@tonic-gate// (the "License").  You may not use this file except in compliance
10*7c478bd9Sstevel@tonic-gate// with the License.
11*7c478bd9Sstevel@tonic-gate//
12*7c478bd9Sstevel@tonic-gate// You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
13*7c478bd9Sstevel@tonic-gate// or http://www.opensolaris.org/os/licensing.
14*7c478bd9Sstevel@tonic-gate// See the License for the specific language governing permissions
15*7c478bd9Sstevel@tonic-gate// and limitations under the License.
16*7c478bd9Sstevel@tonic-gate//
17*7c478bd9Sstevel@tonic-gate// When distributing Covered Code, include this CDDL HEADER in each
18*7c478bd9Sstevel@tonic-gate// file and include the License file at usr/src/OPENSOLARIS.LICENSE.
19*7c478bd9Sstevel@tonic-gate// If applicable, add the following below this CDDL HEADER, with the
20*7c478bd9Sstevel@tonic-gate// fields enclosed by brackets "[]" replaced with your own identifying
21*7c478bd9Sstevel@tonic-gate// information: Portions Copyright [yyyy] [name of copyright owner]
22*7c478bd9Sstevel@tonic-gate//
23*7c478bd9Sstevel@tonic-gate// CDDL HEADER END
24*7c478bd9Sstevel@tonic-gate//
25*7c478bd9Sstevel@tonic-gate
26*7c478bd9Sstevel@tonic-gate//
27*7c478bd9Sstevel@tonic-gate// ISO8859-1 to UTF-8 mapping:
28*7c478bd9Sstevel@tonic-gate//
29*7c478bd9Sstevel@tonic-gate
30*7c478bd9Sstevel@tonic-gateISO8859-1%UTF-8 {
31*7c478bd9Sstevel@tonic-gate    direction {
32*7c478bd9Sstevel@tonic-gate	condition {
33*7c478bd9Sstevel@tonic-gate		between 0x0...0x7f;
34*7c478bd9Sstevel@tonic-gate	} map {
35*7c478bd9Sstevel@tonic-gate		0x0...0x7f	0x0
36*7c478bd9Sstevel@tonic-gate	};
37*7c478bd9Sstevel@tonic-gate	condition {
38*7c478bd9Sstevel@tonic-gate		between 0x80...0xff;
39*7c478bd9Sstevel@tonic-gate	} map {
40*7c478bd9Sstevel@tonic-gate		0x80		0xc280
41*7c478bd9Sstevel@tonic-gate		0x81		0xc281
42*7c478bd9Sstevel@tonic-gate		0x82		0xc282
43*7c478bd9Sstevel@tonic-gate		0x83		0xc283
44*7c478bd9Sstevel@tonic-gate		0x84		0xc284
45*7c478bd9Sstevel@tonic-gate		0x85		0xc285
46*7c478bd9Sstevel@tonic-gate		0x86		0xc286
47*7c478bd9Sstevel@tonic-gate		0x87		0xc287
48*7c478bd9Sstevel@tonic-gate		0x88		0xc288
49*7c478bd9Sstevel@tonic-gate		0x89		0xc289
50*7c478bd9Sstevel@tonic-gate		0x8a		0xc28a
51*7c478bd9Sstevel@tonic-gate		0x8b		0xc28b
52*7c478bd9Sstevel@tonic-gate		0x8c		0xc28c
53*7c478bd9Sstevel@tonic-gate		0x8d		0xc28d
54*7c478bd9Sstevel@tonic-gate		0x8e		0xc28e
55*7c478bd9Sstevel@tonic-gate		0x8f		0xc28f
56*7c478bd9Sstevel@tonic-gate		0x90		0xc290
57*7c478bd9Sstevel@tonic-gate		0x91		0xc291
58*7c478bd9Sstevel@tonic-gate		0x92		0xc292
59*7c478bd9Sstevel@tonic-gate		0x93		0xc293
60*7c478bd9Sstevel@tonic-gate		0x94		0xc294
61*7c478bd9Sstevel@tonic-gate		0x95		0xc295
62*7c478bd9Sstevel@tonic-gate		0x96		0xc296
63*7c478bd9Sstevel@tonic-gate		0x97		0xc297
64*7c478bd9Sstevel@tonic-gate		0x98		0xc298
65*7c478bd9Sstevel@tonic-gate		0x99		0xc299
66*7c478bd9Sstevel@tonic-gate		0x9a		0xc29a
67*7c478bd9Sstevel@tonic-gate		0x9b		0xc29b
68*7c478bd9Sstevel@tonic-gate		0x9c		0xc29c
69*7c478bd9Sstevel@tonic-gate		0x9d		0xc29d
70*7c478bd9Sstevel@tonic-gate		0x9e		0xc29e
71*7c478bd9Sstevel@tonic-gate		0x9f		0xc29f
72*7c478bd9Sstevel@tonic-gate		0xa0		0xc2a0
73*7c478bd9Sstevel@tonic-gate		0xa1		0xc2a1
74*7c478bd9Sstevel@tonic-gate		0xa2		0xc2a2
75*7c478bd9Sstevel@tonic-gate		0xa3		0xc2a3
76*7c478bd9Sstevel@tonic-gate		0xa4		0xc2a4
77*7c478bd9Sstevel@tonic-gate		0xa5		0xc2a5
78*7c478bd9Sstevel@tonic-gate		0xa6		0xc2a6
79*7c478bd9Sstevel@tonic-gate		0xa7		0xc2a7
80*7c478bd9Sstevel@tonic-gate		0xa8		0xc2a8
81*7c478bd9Sstevel@tonic-gate		0xa9		0xc2a9
82*7c478bd9Sstevel@tonic-gate		0xaa		0xc2aa
83*7c478bd9Sstevel@tonic-gate		0xab		0xc2ab
84*7c478bd9Sstevel@tonic-gate		0xac		0xc2ac
85*7c478bd9Sstevel@tonic-gate		0xad		0xc2ad
86*7c478bd9Sstevel@tonic-gate		0xae		0xc2ae
87*7c478bd9Sstevel@tonic-gate		0xaf		0xc2af
88*7c478bd9Sstevel@tonic-gate		0xb0		0xc2b0
89*7c478bd9Sstevel@tonic-gate		0xb1		0xc2b1
90*7c478bd9Sstevel@tonic-gate		0xb2		0xc2b2
91*7c478bd9Sstevel@tonic-gate		0xb3		0xc2b3
92*7c478bd9Sstevel@tonic-gate		0xb4		0xc2b4
93*7c478bd9Sstevel@tonic-gate		0xb5		0xc2b5
94*7c478bd9Sstevel@tonic-gate		0xb6		0xc2b6
95*7c478bd9Sstevel@tonic-gate		0xb7		0xc2b7
96*7c478bd9Sstevel@tonic-gate		0xb8		0xc2b8
97*7c478bd9Sstevel@tonic-gate		0xb9		0xc2b9
98*7c478bd9Sstevel@tonic-gate		0xba		0xc2ba
99*7c478bd9Sstevel@tonic-gate		0xbb		0xc2bb
100*7c478bd9Sstevel@tonic-gate		0xbc		0xc2bc
101*7c478bd9Sstevel@tonic-gate		0xbd		0xc2bd
102*7c478bd9Sstevel@tonic-gate		0xbe		0xc2be
103*7c478bd9Sstevel@tonic-gate		0xbf		0xc2bf
104*7c478bd9Sstevel@tonic-gate		0xc0		0xc380
105*7c478bd9Sstevel@tonic-gate		0xc1		0xc381
106*7c478bd9Sstevel@tonic-gate		0xc2		0xc382
107*7c478bd9Sstevel@tonic-gate		0xc3		0xc383
108*7c478bd9Sstevel@tonic-gate		0xc4		0xc384
109*7c478bd9Sstevel@tonic-gate		0xc5		0xc385
110*7c478bd9Sstevel@tonic-gate		0xc6		0xc386
111*7c478bd9Sstevel@tonic-gate		0xc7		0xc387
112*7c478bd9Sstevel@tonic-gate		0xc8		0xc388
113*7c478bd9Sstevel@tonic-gate		0xc9		0xc389
114*7c478bd9Sstevel@tonic-gate		0xca		0xc38a
115*7c478bd9Sstevel@tonic-gate		0xcb		0xc38b
116*7c478bd9Sstevel@tonic-gate		0xcc		0xc38c
117*7c478bd9Sstevel@tonic-gate		0xcd		0xc38d
118*7c478bd9Sstevel@tonic-gate		0xce		0xc38e
119*7c478bd9Sstevel@tonic-gate		0xcf		0xc38f
120*7c478bd9Sstevel@tonic-gate		0xd0		0xc390
121*7c478bd9Sstevel@tonic-gate		0xd1		0xc391
122*7c478bd9Sstevel@tonic-gate		0xd2		0xc392
123*7c478bd9Sstevel@tonic-gate		0xd3		0xc393
124*7c478bd9Sstevel@tonic-gate		0xd4		0xc394
125*7c478bd9Sstevel@tonic-gate		0xd5		0xc395
126*7c478bd9Sstevel@tonic-gate		0xd6		0xc396
127*7c478bd9Sstevel@tonic-gate		0xd7		0xc397
128*7c478bd9Sstevel@tonic-gate		0xd8		0xc398
129*7c478bd9Sstevel@tonic-gate		0xd9		0xc399
130*7c478bd9Sstevel@tonic-gate		0xda		0xc39a
131*7c478bd9Sstevel@tonic-gate		0xdb		0xc39b
132*7c478bd9Sstevel@tonic-gate		0xdc		0xc39c
133*7c478bd9Sstevel@tonic-gate		0xdd		0xc39d
134*7c478bd9Sstevel@tonic-gate		0xde		0xc39e
135*7c478bd9Sstevel@tonic-gate		0xdf		0xc39f
136*7c478bd9Sstevel@tonic-gate		0xe0		0xc3a0
137*7c478bd9Sstevel@tonic-gate		0xe1		0xc3a1
138*7c478bd9Sstevel@tonic-gate		0xe2		0xc3a2
139*7c478bd9Sstevel@tonic-gate		0xe3		0xc3a3
140*7c478bd9Sstevel@tonic-gate		0xe4		0xc3a4
141*7c478bd9Sstevel@tonic-gate		0xe5		0xc3a5
142*7c478bd9Sstevel@tonic-gate		0xe6		0xc3a6
143*7c478bd9Sstevel@tonic-gate		0xe7		0xc3a7
144*7c478bd9Sstevel@tonic-gate		0xe8		0xc3a8
145*7c478bd9Sstevel@tonic-gate		0xe9		0xc3a9
146*7c478bd9Sstevel@tonic-gate		0xea		0xc3aa
147*7c478bd9Sstevel@tonic-gate		0xeb		0xc3ab
148*7c478bd9Sstevel@tonic-gate		0xec		0xc3ac
149*7c478bd9Sstevel@tonic-gate		0xed		0xc3ad
150*7c478bd9Sstevel@tonic-gate		0xee		0xc3ae
151*7c478bd9Sstevel@tonic-gate		0xef		0xc3af
152*7c478bd9Sstevel@tonic-gate		0xf0		0xc3b0
153*7c478bd9Sstevel@tonic-gate		0xf1		0xc3b1
154*7c478bd9Sstevel@tonic-gate		0xf2		0xc3b2
155*7c478bd9Sstevel@tonic-gate		0xf3		0xc3b3
156*7c478bd9Sstevel@tonic-gate		0xf4		0xc3b4
157*7c478bd9Sstevel@tonic-gate		0xf5		0xc3b5
158*7c478bd9Sstevel@tonic-gate		0xf6		0xc3b6
159*7c478bd9Sstevel@tonic-gate		0xf7		0xc3b7
160*7c478bd9Sstevel@tonic-gate		0xf8		0xc3b8
161*7c478bd9Sstevel@tonic-gate		0xf9		0xc3b9
162*7c478bd9Sstevel@tonic-gate		0xfa		0xc3ba
163*7c478bd9Sstevel@tonic-gate		0xfb		0xc3bb
164*7c478bd9Sstevel@tonic-gate		0xfc		0xc3bc
165*7c478bd9Sstevel@tonic-gate		0xfd		0xc3bd
166*7c478bd9Sstevel@tonic-gate		0xfe		0xc3be
167*7c478bd9Sstevel@tonic-gate		0xff		0xc3bf
168*7c478bd9Sstevel@tonic-gate	};
169*7c478bd9Sstevel@tonic-gate  };
170*7c478bd9Sstevel@tonic-gate}
171