File: tst-fgetwc.c

package info (click to toggle)
glibc 2.24-11%2Bdeb9u3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 225,316 kB
  • sloc: ansic: 996,116; asm: 261,826; sh: 10,483; makefile: 9,849; cpp: 4,169; python: 3,971; perl: 2,254; awk: 1,753; pascal: 1,521; yacc: 291; sed: 80
file content (52 lines) | stat: -rw-r--r-- 972 bytes parent folder | download | duplicates (43)
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
#include <locale.h>
#include <stdio.h>
#include <wchar.h>


static int
do_test (void)
{
  if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL)
    {
      puts ("setlocale failed");
      return 1;
    }

  if (setvbuf (stdin, NULL, _IONBF, 0) != 0)
    {
      puts ("setvbuf failed");
      return 1;
    }

  wchar_t buf[100];
  size_t nbuf = 0;
  wint_t c;
  while ((c = fgetwc (stdin)) != WEOF)
    buf[nbuf++] = c;

  if (ferror (stdin))
    {
      puts ("error on stdin");
      return 1;
    }

  const wchar_t expected[] =
    {
      0x00000439, 0x00000446, 0x00000443, 0x0000043a,
      0x00000435, 0x0000043d, 0x0000000a, 0x00000071,
      0x00000077, 0x00000065, 0x00000072, 0x00000074,
      0x00000079, 0x0000000a
    };

  if (nbuf != sizeof (expected) / sizeof (expected[0])
      || wmemcmp (expected, buf, nbuf) != 0)
    {
      puts ("incorrect result");
      return 1;
    }

  return 0;
}

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