| 1 | /* Character set conversion.
|
|---|
| 2 | Copyright (C) 2007, 2009, 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[10 + 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 Solaris 10, look in the "iconv -l" output. Some aliases are advertised but
|
|---|
| 29 | # not actually supported by the iconv() function and by the 'iconv' program.
|
|---|
| 30 | # For example:
|
|---|
| 31 | # $ echo abc | iconv -f 646 -t ISO-8859-1
|
|---|
| 32 | # Not supported 646 to ISO-8859-1
|
|---|
| 33 | # $ echo abc | iconv -f 646 -t ISO8859-1
|
|---|
| 34 | $ abc
|
|---|
| 35 | ASCII, "646"
|
|---|
| 36 | ISO-8859-1, "ISO8859-1"
|
|---|
| 37 | ISO-8859-2, "ISO8859-2"
|
|---|
| 38 | ISO-8859-3, "ISO8859-3"
|
|---|
| 39 | ISO-8859-4, "ISO8859-4"
|
|---|
| 40 | ISO-8859-5, "ISO8859-5"
|
|---|
| 41 | ISO-8859-6, "ISO8859-6"
|
|---|
| 42 | ISO-8859-7, "ISO8859-7"
|
|---|
| 43 | ISO-8859-8, "ISO8859-8"
|
|---|
| 44 | ISO-8859-9, "ISO8859-9"
|
|---|
| 45 | ISO-8859-15, "ISO8859-15"
|
|---|
| 46 | CP1251, "ansi-1251"
|
|---|