summaryrefslogtreecommitdiff
path: root/usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h
diff options
context:
space:
mode:
authorAlexander Pyhalov <apyhalov@gmail.com>2018-11-21 12:34:20 +0300
committerDan McDonald <danmcd@joyent.com>2018-12-08 19:20:29 -0500
commit16d8656330ae5622ec32e5007f62145ebafdc50f (patch)
treed6f600630b00694e0f7e8c4123b2c9eba15a81c4 /usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h
parent863275a46b877530dd1c728df0b4e9bddb5702e3 (diff)
downloadillumos-joyent-16d8656330ae5622ec32e5007f62145ebafdc50f.tar.gz
9997 Import iconv modules from g11n consolidation
Reviewed by: Andy Fiddaman <omnios@citrus-it.net> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h')
-rw-r--r--usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h b/usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h
new file mode 100644
index 0000000000..e613942a99
--- /dev/null
+++ b/usr/src/lib/iconv_modules/hi_IN/include/pc-iscii.h
@@ -0,0 +1,54 @@
+/*
+ * CDDL HEADER START
+ *
+ * The contents of this file are subject to the terms of the
+ * Common Development and Distribution License (the "License").
+ * You may not use this file except in compliance with the License.
+ *
+ * You can obtain a copy of the license at src/OPENSOLARIS.LICENSE
+ * or http://www.opensolaris.org/os/licensing.
+ * See the License for the specific language governing permissions
+ * and limitations under the License.
+ *
+ * When distributing Covered Code, include this CDDL HEADER in each
+ * file and include the License file at src/OPENSOLARIS.LICENSE.
+ * If applicable, add the following below this CDDL HEADER, with the
+ * fields enclosed by brackets "[]" replaced with your own identifying
+ * information: Portions Copyright [yyyy] [name of copyright owner]
+ *
+ * CDDL HEADER END
+ */
+/*
+ * Copyright(c) 2001 Sun Microsystems, Inc.
+ * All rights reserved.
+ */
+
+#ifndef _PC_ISCII_H_
+#define _PC_ISCII_H_
+
+#define uchar unsigned char
+
+typedef struct _entry {
+ uchar pc_iscii;
+ uchar iscii;
+ int count;
+} Entry;
+
+Entry pciscii_isc_tbl[] = {
+ { 0x80, 0xA1, 48 },
+ { 0xE0, 0xEF, 1 },
+ { 0xE1, 0xD1, 15 },
+ { 0xF0, 0xF0, 1 },
+ { 0xF1, 0xE0, 11 }
+};
+
+Entry isc_pciscii_tbl[] = {
+ { 0x80, 0xA1, 48 },
+ { 0xE1, 0xD1, 15 },
+ { 0xF1, 0xE0, 11 },
+ { 0xE0, 0xEF, 1 },
+ { 0xF0, 0xF0, 1 },
+ { 0x30, 0xF1, 10 } /* convert Iscii numerals to ascii numerals */
+};
+
+#endif