From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/iconv/libcharset/tools/all-charsets | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 jni/iconv/libcharset/tools/all-charsets (limited to 'jni/iconv/libcharset/tools/all-charsets') diff --git a/jni/iconv/libcharset/tools/all-charsets b/jni/iconv/libcharset/tools/all-charsets new file mode 100755 index 0000000..22b3368 --- /dev/null +++ b/jni/iconv/libcharset/tools/all-charsets @@ -0,0 +1,34 @@ +#! /bin/sh + +# Prints a table of the charsets (system dependent name and portable name) +# for all locales. + +${CC-cc} -o locale_codeset locale_codeset.c +${CC-cc} -o locale_charset -I../include locale_charset.c \ + -DHAVE_CONFIG_H -I.. -DLIBDIR='"'`cd ../lib && pwd`'"' \ + ../lib/localcharset.c + +printf '%-15s%-17s%-17s %-17s\n\n' \ + "locale name" "locale charmap" "nl_langinfo(CODESET)" "locale_charset()" +for lc in `./all-locales | sort | uniq` +do + charmap=`LC_ALL=$lc ./locale_charmap 2>/dev/null || echo ''` + codeset=`LC_ALL=$lc ./locale_codeset 2>/dev/null || echo ''` + charset=`LC_ALL=$lc ./locale_charset 2>/dev/null || echo ''` + case "$charset" in + ASCII | ANSI_X3.4-1968 | \ + ISO-8859-1 | ISO-8859-2 | ISO-8859-3 | ISO-8859-4 | ISO-8859-5 | ISO-8859-6 | \ + ISO-8859-7 | ISO-8859-8 | ISO-8859-9 | ISO-8859-13 | ISO-8859-14 | ISO-8859-15 | \ + KOI8-R | KOI8-U | KOI8-T | \ + CP437 | CP775 | CP850 | CP852 | CP855 | CP856 | CP857 | CP861 | CP862 | CP864 | CP865 | CP866 | CP869 | CP874 | CP922 | CP932 | CP943 | CP949 | CP950 | CP1046 | CP1124 | CP1125 | CP1129 | CP1131 | \ + CP1250 | CP1251 | CP1252 | CP1253 | CP1254 | CP1255 | CP1256 | CP1257 | \ + GB2312 | EUC-JP | EUC-KR | EUC-TW | BIG5 | BIG5-HKSCS | GBK | GB18030 | SHIFT_JIS | JOHAB | \ + TIS-620 | VISCII | TCVN5712-1 | ARMSCII-8 | GEORGIAN-PS | PT154 | \ + HP-ROMAN8 | HP-ARABIC8 | HP-GREEK8 | HP-HEBREW8 | HP-TURKISH8 | HP-KANA8 | \ + DEC-KANJI | DEC-HANYU | \ + UTF-8 ) comment="";; + * ) comment="bug";; + esac + printf '%-15s %-17s %-17s %-17s %s\n' \ + "$lc" "$charmap" "$codeset" "$charset" "$comment" +done -- cgit v1.2.3