summaryrefslogtreecommitdiff
path: root/stdio-common/tst-ungetc.c
blob: ba74a84f7f015b0f683578da71f57c8340f4a389 (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
/* Test for ungetc bugs.  */

#include <stdio.h>
#include <unistd.h>

#define assert(x) \
  if (!(x)) \
    { \
      fputs ("test failed: " #x "\n", stderr); \
      retval = 1; \
      goto the_end; \
    }

int
main (int argc, char *argv[])
{
  char *name;
  FILE *fp = NULL;
  int retval = 0;
  int c;

  name = tmpnam (NULL);
  fp = fopen (name, "w");
  assert (fp != NULL)
  fputs ("bl", fp);
  fclose (fp);
  fp = NULL;

  fp = fopen (name, "r");
  assert (fp != NULL)
  assert (getc (fp) != EOF);
  assert ((c = getc (fp)) != EOF);
  assert (getc (fp) == EOF);
  assert (ungetc (c, fp) == c);
  assert (feof (fp) == 0);

the_end:
  if (fp != NULL)
    fclose (fp);
  unlink (name);

  return retval;
}