imapext-2007

view src/charset/viscii.c @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
line source
1 /* ========================================================================
2 * Copyright 1988-2006 University of Washington
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 *
11 * ========================================================================
12 */
14 /*
15 * Program: VISCII conversion table
16 *
17 * Author: Mark Crispin
18 * Networks and Distributed Computing
19 * Computing & Communications
20 * University of Washington
21 * Administration Building, AG-44
22 * Seattle, WA 98195
23 * Internet: MRC@CAC.Washington.EDU
24 *
25 * Date: 2 June 1998
26 * Last Edited: 30 August 2006
27 */
29 /* VISCII is the VIetnamese Standard Code for Information Interchange,
30 * defined by the Vietnamese Standardization Working Group, RFC-1456,
31 * May 1993.
32 */
34 static const unsigned short visciitab[256] = {
35 0x0000,0x0001,0x1eb2,0x0003,0x0004,0x1eb4,0x1eaa,0x0007,
36 0x0008,0x0009,0x000a,0x000b,0x000c,0x000d,0x000e,0x000f,
37 0x0010,0x0011,0x0012,0x0013,0x1ef6,0x0015,0x0016,0x0017,
38 0x0018,0x1ef8,0x001a,0x001b,0x001c,0x001d,0x1ef4,0x001f,
39 0x0020,0x0021,0x0022,0x0023,0x0024,0x0025,0x0026,0x0027,
40 0x0028,0x0029,0x002a,0x002b,0x002c,0x002d,0x002e,0x002f,
41 0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,
42 0x0038,0x0039,0x003a,0x003b,0x003c,0x003d,0x003e,0x003f,
43 0x0040,0x0041,0x0042,0x0043,0x0044,0x0045,0x0046,0x0047,
44 0x0048,0x0049,0x004a,0x004b,0x004c,0x004d,0x004e,0x004f,
45 0x0050,0x0051,0x0052,0x0053,0x0054,0x0055,0x0056,0x0057,
46 0x0058,0x0059,0x005a,0x005b,0x005c,0x005d,0x005e,0x005f,
47 0x0060,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,
48 0x0068,0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,
49 0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,
50 0x0078,0x0079,0x007a,0x007b,0x007c,0x007d,0x007e,0x007f,
51 0x1ea0,0x1eae,0x1eb0,0x1eb6,0x1ea4,0x1ea6,0x1ea8,0x1eac,
52 0x1ebc,0x1eb8,0x1ebe,0x1ec0,0x1ec2,0x1ec4,0x1ec6,0x1ed0,
53 0x1ed2,0x1ed4,0x1ed6,0x1ed8,0x1ee2,0x1eda,0x1edc,0x1ede,
54 0x1eca,0x1ece,0x1ecc,0x1ec8,0x1ee6,0x0168,0x1ee4,0x1ef2,
55 0x00d5,0x1eaf,0x1eb1,0x1eb7,0x1ea5,0x1ea7,0x1ea9,0x1ead,
56 0x1ebd,0x1eb9,0x1ebf,0x1ec1,0x1ec3,0x1ec5,0x1ec7,0x1ed1,
57 0x1ed3,0x1ed5,0x1ed7,0x1ee0,0x01a0,0x1ed9,0x1edd,0x1edf,
58 0x1ecb,0x1ef0,0x1ee8,0x1eea,0x1eec,0x01a1,0x1edb,0x01af,
59 0x00c0,0x00c1,0x00c2,0x00c3,0x1ea2,0x0102,0x1eb3,0x1eb5,
60 0x00c8,0x00c9,0x00ca,0x1eba,0x00cc,0x00cd,0x0128,0x1ef3,
61 0x0110,0x1ee9,0x00d2,0x00d3,0x00d4,0x1ea1,0x1ef7,0x1eeb,
62 0x1eed,0x00d9,0x00da,0x1ef9,0x1ef5,0x00dd,0x1ee1,0x01b0,
63 0x00e0,0x00e1,0x00e2,0x00e3,0x1ea3,0x0103,0x1eef,0x1eab,
64 0x00e8,0x00e9,0x00ea,0x1ebb,0x00ec,0x00ed,0x0129,0x1ec9,
65 0x0111,0x1ef1,0x00f2,0x00f3,0x00f4,0x00f5,0x1ecf,0x1ecd,
66 0x1ee5,0x00f9,0x00fa,0x0169,0x1ee7,0x00fd,0x1ee3,0x1eee
67 };

UW-IMAP'd extensions by yuuji