mirror of
https://git.zap.org.au/git/trader.git
synced 2024-10-27 18:20:13 -04:00
c0ca9b04da
These files have been created by running ./build-aux/bootstrap with Gnulib as at commit b1268f22f443e8e4b9e85ddf4e024875a2cd2030 (with a date stamp of Sun Jan 10 23:06:39 2021 +0100), Autoconf 2.69, Automake 1.16.3, Gettext 0.21 and pkg-config 0.29.2.
73 lines
1.8 KiB
Plaintext
73 lines
1.8 KiB
Plaintext
/* Character set conversion.
|
|
Copyright (C) 2007, 2020-2021 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
struct mapping { int standard_name; const char vendor_name[9 + 1]; };
|
|
%struct-type
|
|
%language=ANSI-C
|
|
%define slot-name standard_name
|
|
%define hash-function-name mapping_hash
|
|
%define lookup-function-name mapping_lookup
|
|
%readonly-tables
|
|
%global-table
|
|
%define word-array-name mappings
|
|
%pic
|
|
%%
|
|
# On HP-UX 11.11, look in /usr/lib/nls/iconv.
|
|
ISO-8859-1, "iso88591"
|
|
ISO-8859-2, "iso88592"
|
|
ISO-8859-5, "iso88595"
|
|
ISO-8859-6, "iso88596"
|
|
ISO-8859-7, "iso88597"
|
|
ISO-8859-8, "iso88598"
|
|
ISO-8859-9, "iso88599"
|
|
ISO-8859-15, "iso885915"
|
|
CP437, "cp437"
|
|
CP775, "cp775"
|
|
CP850, "cp850"
|
|
CP852, "cp852"
|
|
CP855, "cp855"
|
|
CP857, "cp857"
|
|
CP861, "cp861"
|
|
CP862, "cp862"
|
|
CP864, "cp864"
|
|
CP865, "cp865"
|
|
CP866, "cp866"
|
|
CP869, "cp869"
|
|
CP874, "cp874"
|
|
CP1250, "cp1250"
|
|
CP1251, "cp1251"
|
|
CP1252, "cp1252"
|
|
CP1253, "cp1253"
|
|
CP1254, "cp1254"
|
|
CP1255, "cp1255"
|
|
CP1256, "cp1256"
|
|
CP1257, "cp1257"
|
|
CP1258, "cp1258"
|
|
HP-ROMAN8, "roman8"
|
|
HP-ARABIC8, "arabic8"
|
|
HP-GREEK8, "greek8"
|
|
HP-HEBREW8, "hebrew8"
|
|
HP-TURKISH8, "turkish8"
|
|
HP-KANA8, "kana8"
|
|
TIS-620, "tis620"
|
|
GB2312, "hp15CN"
|
|
EUC-JP, "eucJP"
|
|
EUC-KR, "eucKR"
|
|
EUC-TW, "eucTW"
|
|
BIG5, "big5"
|
|
SHIFT_JIS, "sjis"
|
|
UTF-8, "utf8"
|