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_BNG_H_
27 #define _ISCII_BNG_H_
28 
29 #include "iscii-common.h"
30 
31 Entry Bengali_isc[] ={
32     {0xA1, 0x0981, 3},
33     {0xA4, 0x0985, 7},
34     {0xAC, 0x098F, 2},
35     {0xB0, 0x0993, 2},
36     {0xB3, 0x0995, 20},
37     {0xC8, 0x09AA, 8},
38     {0xD1, 0x09B2, 1},
39     {0xD5, 0x09B6, 4},
40     {ISC_INV, UNI_INV, 1},
41     {0xDA, 0x09BE, 6},
42     {0xE1, 0x09C7, 2},
43     {0xE5, 0x09CB, 2},
44     {0xE8, 0x09CD, 1},
45     {0xE9, 0x09BC, 1},
46     {0xEA, 0x09F7, 1},
47     {0xF1, 0x09E6, 10},
48 };
49 
50 Entry Bengali_uni[] ={
51     {0xA1, 0x0981, 3},
52     {0xA4, 0x0985, 7},
53     {0xAC, 0x098F, 2},
54     {0xB0, 0x0993, 2},
55     {0xB3, 0x0995, 20},
56     {0xC8, 0x09AA, 8},
57     {0xD1, 0x09B2, 1},
58     {0xD5, 0x09B6, 4},
59     {0xE9, 0x09BC, 1},
60     {0xDA, 0x09BE, 6},
61     {0xE1, 0x09C7, 2},
62     {0xE5, 0x09CB, 2},
63     {0xE8, 0x09CD, 1},
64     {0xBF, 0x09DC, NUKTA},
65     {0xC0, 0x09DD, NUKTA},
66     {0xF1, 0x09E6, 10},
67     {0xEA, 0x09F7, 1},
68     {0xE8, UNI_ZWNJ,HALANT},
69     {0xE9, UNI_ZWJ, HALANT},
70     {ISC_INV, UNI_INV, 1}
71 };
72 
73 int Bengali_nukta_type[] = {
74         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* A0 - A7 */
75         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* A8 - AF */
76         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* B0 - B7 */
77         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x09DC, /* B8 - BF */
78         0x09DD, 0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* C0 - C7 */
79         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* C8 - CF */
80         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* D0 - D7 */
81         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* D8 - DF */
82         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* E0 - E7 */
83         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* E8 - EF */
84         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    /* F0 - E7 */
85         0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0,    0x0     /* F8 - FF */
86 };
87 
88 #endif
89