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
  
     | 
    
      /* Test for fdopen bugs.  */
#include <stdio.h>
#include <unistd.h>
#include <fcntl.h>
#undef assert
#define assert(x) \
  if (!(x)) \
    { \
      fputs ("test failed: " #x "\n", stderr); \
      retval = 1; \
      goto the_end; \
    }
char buffer[256];
int
main (int argc, char *argv[])
{
  char *name;
  FILE *fp = NULL;
  int retval = 0;
  int fd;
  name = tmpnam (NULL);
  fp = fopen (name, "w");
  assert (fp != NULL)
  fputs ("foobar and baz", fp);
  fclose (fp);
  fp = NULL;
  fd = open (name, O_RDONLY);
  assert (fd != -1);
  assert (lseek (fd, 5, SEEK_SET) == 5);
  /* The file position indicator associated with the new stream is set to
     the position indicated by the file offset associated with the file
     descriptor.  */
  fp = fdopen (fd, "r");
  assert (fp != NULL);
  assert (getc (fp) == 'r');
  assert (getc (fp) == ' ');
the_end:
  if (fp != NULL)
    fclose (fp);
  unlink (name);
  return retval;
}
 
     |