/* Copyright (c) 1990 The Regents of the University of California. All rights reserved. Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, and/or other materials related to such distribution and use acknowledge that the software was developed by the University of California, Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ /* FUNCTION <<tmpfile>>---create a temporary file INDEX tmpfile INDEX _tmpfile_r SYNOPSIS #include <stdio.h> FILE *tmpfile(void); FILE *_tmpfile_r(struct _reent *<[reent]>); DESCRIPTION Create a temporary file (a file which will be deleted automatically), using a name generated by <<tmpnam>>. The temporary file is opened with the mode <<"wb+">>, permitting you to read and write anywhere in it as a binary file (without any data transformations the host system may perform for text files). The alternate function <<_tmpfile_r>> is a reentrant version. The argument <[reent]> is a pointer to a reentrancy structure. RETURNS <<tmpfile>> normally returns a pointer to the temporary file. If no temporary file could be created, the result is NULL, and <<errno>> records the reason for failure. PORTABILITY Both ANSI C and the System V Interface Definition (Issue 2) require <<tmpfile>>. Supporting OS subroutines required: <<close>>, <<fstat>>, <<getpid>>, <<isatty>>, <<lseek>>, <<open>>, <<read>>, <<sbrk>>, <<write>>. <<tmpfile>> also requires the global pointer <<environ>>. */ #define _DEFAULT_SOURCE #include <stdio.h> #include <errno.h> #include <fcntl.h> #include <unistd.h> #include <sys/stat.h> #ifndef O_BINARY # define O_BINARY 0 #endif FILE * tmpfile (void) { FILE *fp; int e; char *f; char buf[L_tmpnam]; int fd; do { if ((f = tmpnam ( buf)) == NULL) return NULL; fd = open (f, O_RDWR | O_CREAT | O_EXCL | O_BINARY, S_IRUSR | S_IWUSR); } while (fd < 0 && _REENT_ERRNO(ptr) == EEXIST); if (fd < 0) return NULL; fp = fdopen ( fd, "wb+"); e = _REENT_ERRNO(ptr); if (!fp) close (fd); (void) remove (f); _REENT_ERRNO(ptr) = e; return fp; }