1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright(c) 2001 Sun Microsystems, Inc.
23  * All rights reserved.
24  */
25 
26 #ifndef _ISCII_MLM_H_
27 #define _ISCII_MLM_H_
28 
29 #include "iscii-common.h"
30 
31 Entry Malayalam_isc[] ={
32     {0xA2, 0x0D02, 2},
33     {0xA4, 0x0D05, 10},
34     {0xAF, 0x0D12, 3},
35     {0xB3, 0x0D15, 20},
36     {0xC8, 0x0D2A, 6},
37     {0xCF, 0x0D30, 10},
38     {ISC_INV, UNI_INV, 1},
39     {0xDA, 0x0D3E, 9},
40     {0xE4, 0x0D4A, 3},
41     {0xE8, 0x0D4D, 1},
42     {0xF1, 0x0D66, 10}
43 };
44 
45 /*
46 Entry *Malayalam_uni = Malayalam_isc;
47 */
48 Entry Malayalam_uni[] ={
49     {0xA2, 0x0D02, 2},
50     {0xA4, 0x0D05, 10},
51     {0xAF, 0x0D12, 3},
52     {0xB3, 0x0D15, 20},
53     {0xC8, 0x0D2A, 6},
54     {0xCF, 0x0D30, 10},
55     {0xDA, 0x0D3E, 9},
56     {0xE4, 0x0D4A, 3},
57     {0xE8, 0x0D4D, 1},
58     {0xF1, 0x0D66, 10},
59     {0xE8, UNI_ZWNJ,HALANT},
60     {0xE9, UNI_ZWJ, HALANT},
61     {ISC_INV, UNI_INV, 1}
62 };
63 
64 
65 #endif
66