2001-01-07 00:27:53 +01:00
|
|
|
/* Contributed by Owen Taylor <otaylor@redhat.com>. */
|
|
|
|
|
|
|
|
#include <iconv.h>
|
|
|
|
#include <errno.h>
|
2001-09-01 21:24:55 +02:00
|
|
|
#include <stddef.h>
|
2001-01-07 00:27:53 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define BUFSIZE 10000
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char inbuf[BUFSIZE];
|
|
|
|
wchar_t outbuf[BUFSIZE];
|
|
|
|
|
|
|
|
iconv_t cd;
|
|
|
|
int i;
|
|
|
|
char *inptr;
|
|
|
|
char *outptr;
|
|
|
|
size_t inbytes_left, outbytes_left;
|
|
|
|
int count;
|
|
|
|
int result = 0;
|
|
|
|
|
|
|
|
for (i=0; i < BUFSIZE; i++)
|
|
|
|
inbuf[i] = 'a';
|
|
|
|
|
|
|
|
cd = iconv_open ("UCS-4LE", "UTF-8");
|
|
|
|
|
|
|
|
inbytes_left = BUFSIZE;
|
|
|
|
outbytes_left = BUFSIZE * 4;
|
|
|
|
inptr = inbuf;
|
|
|
|
outptr = (char *) outbuf;
|
|
|
|
|
|
|
|
count = iconv (cd, &inptr, &inbytes_left, &outptr, &outbytes_left);
|
|
|
|
|
|
|
|
if (count < 0)
|
|
|
|
{
|
|
|
|
if (errno == E2BIG)
|
|
|
|
printf ("Received E2BIG\n");
|
|
|
|
else
|
|
|
|
printf ("Received something else\n");
|
|
|
|
|
|
|
|
printf ("inptr change: %td\n", inptr - inbuf);
|
2002-03-24 14:03:01 +01:00
|
|
|
printf ("inlen change: %zd\n", BUFSIZE - inbytes_left);
|
2003-07-31 21:26:38 +02:00
|
|
|
printf ("outptr change: %td\n", outptr - (char *) outbuf);
|
2002-03-24 14:03:01 +01:00
|
|
|
printf ("outlen change: %zd\n", BUFSIZE * 4 - outbytes_left);
|
2001-01-07 00:27:53 +01:00
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf ("Succeeded\n");
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|