summaryrefslogtreecommitdiff
path: root/test/iconv/tst-iconv1.c
blob: 67b39ffec46465f4e0f77ac0ac4b3f0d2d302bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Test case by yaoz@nih.gov.  */

#include <stddef.h>
#include <stdio.h>
#include <string.h>

#if defined(__GLIBC__) && !defined(__UCLIBC__)
#include <iconv.h>
#endif

static int
do_test (void)
{
#if defined(__GLIBC__) && !defined(__UCLIBC__)
  char utf8[5];
  wchar_t ucs4[5];
  iconv_t cd;
  char *inbuf;
  char *outbuf;
  size_t inbytes;
  size_t outbytes;
  size_t n;

  strcpy (utf8, "abcd");

  /* From UTF8 to UCS4. */
  cd = iconv_open ("UCS4", "UTF8");
  if (cd == (iconv_t) -1)
    {
      perror ("iconv_open");
      return 1;
    }

  inbuf = utf8;
  inbytes = 4;
  outbuf = (char *) ucs4;
  outbytes = 4 * sizeof (wchar_t);    /* "Argument list too long" error. */
  n = iconv (cd, &inbuf, &inbytes, &outbuf, &outbytes);
  if (n == (size_t) -1)
    {
      printf ("iconv: %m\n");
      iconv_close (cd);
      return 1;
    }
  iconv_close (cd);

  return 0;
#else
  return 23;
#endif
}

#define TEST_FUNCTION do_test ()
#include "../test-skeleton.c"