File: bug-ungetwc1.c

package info (click to toggle)
glibc 2.24-11%2Bdeb9u4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 225,852 kB
  • sloc: ansic: 996,505; asm: 261,827; sh: 10,484; makefile: 9,856; cpp: 4,169; python: 3,971; perl: 2,254; awk: 1,753; pascal: 1,521; yacc: 291; sed: 80
file content (91 lines) | stat: -rw-r--r-- 1,838 bytes parent folder | download | duplicates (28)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#define _XOPEN_SOURCE 500
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <wchar.h>

const char write_chars[] = "ABC";      /* Characters on testfile. */
const wint_t unget_wchar = L'A';      /* Ungotten wide character. */

char *fname;


static int do_test (void);
#define TEST_FUNCTION do_test ()

#include "../test-skeleton.c"


static int
do_test (void)
{
  wint_t wc;
  FILE *fp;
  int fd;

  fname = (char *) malloc (strlen (test_dir) + sizeof "/bug-ungetwc1.XXXXXX");
  if (fname == NULL)
    {
      puts ("no memory");
      return 1;
    }
  strcpy (stpcpy (fname, test_dir), "/bug-ungetwc1.XXXXXX");
  fd = mkstemp (fname);
  if (fd == -1)
    {
      printf ("cannot open temporary file: %m\n");
      return 1;
    }
  add_temp_file (fname);

  setlocale(LC_ALL, "");

  /* Output to the file. */
  if ((fp = fdopen (fd, "w")) == NULL)
    {
      fprintf (stderr, "Cannot make `%s' file\n", fname);
      exit (EXIT_FAILURE);
    }

  fprintf (fp, "%s", write_chars);
  fclose (fp);

  /* Read from the file. */
  fp = fopen (fname, "r");

  size_t i = 0;
  while (!feof (fp))
    {
      wc = getwc (fp);
      if (i >= sizeof (write_chars))
	{
	  printf ("Did not get end-of-file when expected.\n");
	  return 1;
	}
      else if (wc != (write_chars[i] ? write_chars[i] : WEOF))
	{
	  printf ("Unexpected %lu from getwc.\n", (unsigned long int) wc);
	  return 1;
	}
      i++;
    }
  printf ("\nThe end-of-file indicator is set.\n");

  /* Unget a wide character. */
  ungetwc (unget_wchar, fp);
  printf ("< `%lc' is ungotten.\n", unget_wchar);

  /* Check the end-of-file indicator. */
  if (feof (fp))
    {
      printf ("The end-of-file indicator is still set.\n");
      return 1;
    }
  else
    printf ("The end-of-file flag is cleared.\n");

  fflush (stdout);
  fclose (fp);

  return 0;
}