1 /* Copyright (C) 2000-2002, 2004-2005 Free Software Foundation, Inc.
2 This file is part of the GNU LIBICONV Library.
4 The GNU LIBICONV Library is free software; you can redistribute it
5 and/or modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 The GNU LIBICONV Library is distributed in the hope that it will be
10 useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU LIBICONV Library; see the file COPYING.LIB.
16 If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
17 Fifth Floor, Boston, MA 02110-1301, USA. */
19 /* Create a table from Unicode to CHARSET. */
30 #include "binary-io.h"
32 int main (int argc
, char* argv
[])
39 fprintf(stderr
,"Usage: table-to charset\n");
45 SET_BINARY(fileno(stdout
));
48 cd
= iconv_open(charset
,"UCS-4-INTERNAL");
49 if (cd
== (iconv_t
)(-1)) {
54 /* When testing UTF-8, stop at 0x10000, otherwise the output file gets too
56 bmp_only
= (strcmp(charset
,"UTF-8") == 0);
60 unsigned char buf
[10];
61 for (i
= 0; i
< (bmp_only
? 0x10000 : 0x110000); i
++) {
63 const char* inbuf
= (const char*) &in
;
64 size_t inbytesleft
= sizeof(unsigned int);
65 char* outbuf
= (char*)buf
;
66 size_t outbytesleft
= sizeof(buf
);
69 iconv(cd
,NULL
,NULL
,NULL
,NULL
);
70 result
= iconv(cd
,(ICONV_CONST
char**)&inbuf
,&inbytesleft
,&outbuf
,&outbytesleft
);
71 if (result
!= (size_t)(-1))
72 result2
= iconv(cd
,NULL
,NULL
,&outbuf
,&outbytesleft
);
73 if (result
== (size_t)(-1) || result2
== (size_t)(-1)) {
74 if (errno
!= EILSEQ
) {
75 int saved_errno
= errno
;
76 fprintf(stderr
,"0x%02X: iconv error: ",i
);
81 } else if (result
== 0) /* ignore conversions with transliteration */ {
82 if (inbytesleft
== 0 && outbytesleft
< sizeof(buf
)) {
83 unsigned int jmax
= sizeof(buf
) - outbytesleft
;
86 for (j
= 0; j
< jmax
; j
++)
87 printf("%02X",buf
[j
]);
88 printf("\t0x%04X\n",i
);
89 } else if (inbytesleft
== 0 && i
>= 0xe0000 && i
< 0xe0080) {
90 /* Language tags may silently be dropped. */
92 fprintf(stderr
,"0x%02X: inbytes = %ld, outbytes = %ld\n",i
,(long)(sizeof(unsigned int)-inbytesleft
),(long)(sizeof(buf
)-outbytesleft
));
99 if (iconv_close(cd
) < 0) {
100 perror("iconv_close");
104 if (ferror(stdin
) || ferror(stdout
) || fclose(stdout
)) {
105 fprintf(stderr
,"I/O error\n");