Last change
on this file since 3646 was 3529, checked in by bird, 3 years ago |
Imported grep 3.7 from grep-3.7.tar.gz (sha256: c22b0cf2d4f6bbe599c902387e8058990e1eee99aef333a203829e5fd3dbb342), applying minimal auto-props.
|
File size:
1.8 KB
|
Line | |
---|
1 | /* Character set conversion.
|
---|
2 | Copyright (C) 2007, 2020-2021 Free Software Foundation, Inc.
|
---|
3 |
|
---|
4 | This file is free software: you can redistribute it and/or modify
|
---|
5 | it under the terms of the GNU Lesser General Public License as
|
---|
6 | published by the Free Software Foundation; either version 2.1 of the
|
---|
7 | License, or (at your option) any later version.
|
---|
8 |
|
---|
9 | This file is distributed in the hope that it will be useful,
|
---|
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
12 | GNU Lesser General Public License for more details.
|
---|
13 |
|
---|
14 | You should have received a copy of the GNU Lesser General Public License
|
---|
15 | along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
---|
16 |
|
---|
17 | struct mapping { int standard_name; const char vendor_name[9 + 1]; };
|
---|
18 | %struct-type
|
---|
19 | %language=ANSI-C
|
---|
20 | %define slot-name standard_name
|
---|
21 | %define hash-function-name mapping_hash
|
---|
22 | %define lookup-function-name mapping_lookup
|
---|
23 | %readonly-tables
|
---|
24 | %global-table
|
---|
25 | %define word-array-name mappings
|
---|
26 | %pic
|
---|
27 | %%
|
---|
28 | # On HP-UX 11.11, look in /usr/lib/nls/iconv.
|
---|
29 | ISO-8859-1, "iso88591"
|
---|
30 | ISO-8859-2, "iso88592"
|
---|
31 | ISO-8859-5, "iso88595"
|
---|
32 | ISO-8859-6, "iso88596"
|
---|
33 | ISO-8859-7, "iso88597"
|
---|
34 | ISO-8859-8, "iso88598"
|
---|
35 | ISO-8859-9, "iso88599"
|
---|
36 | ISO-8859-15, "iso885915"
|
---|
37 | CP437, "cp437"
|
---|
38 | CP775, "cp775"
|
---|
39 | CP850, "cp850"
|
---|
40 | CP852, "cp852"
|
---|
41 | CP855, "cp855"
|
---|
42 | CP857, "cp857"
|
---|
43 | CP861, "cp861"
|
---|
44 | CP862, "cp862"
|
---|
45 | CP864, "cp864"
|
---|
46 | CP865, "cp865"
|
---|
47 | CP866, "cp866"
|
---|
48 | CP869, "cp869"
|
---|
49 | CP874, "cp874"
|
---|
50 | CP1250, "cp1250"
|
---|
51 | CP1251, "cp1251"
|
---|
52 | CP1252, "cp1252"
|
---|
53 | CP1253, "cp1253"
|
---|
54 | CP1254, "cp1254"
|
---|
55 | CP1255, "cp1255"
|
---|
56 | CP1256, "cp1256"
|
---|
57 | CP1257, "cp1257"
|
---|
58 | CP1258, "cp1258"
|
---|
59 | HP-ROMAN8, "roman8"
|
---|
60 | HP-ARABIC8, "arabic8"
|
---|
61 | HP-GREEK8, "greek8"
|
---|
62 | HP-HEBREW8, "hebrew8"
|
---|
63 | HP-TURKISH8, "turkish8"
|
---|
64 | HP-KANA8, "kana8"
|
---|
65 | TIS-620, "tis620"
|
---|
66 | GB2312, "hp15CN"
|
---|
67 | EUC-JP, "eucJP"
|
---|
68 | EUC-KR, "eucKR"
|
---|
69 | EUC-TW, "eucTW"
|
---|
70 | BIG5, "big5"
|
---|
71 | SHIFT_JIS, "sjis"
|
---|
72 | UTF-8, "utf8"
|
---|
Note:
See
TracBrowser
for help on using the repository browser.