DOKK / manpages / debian 10 / manpages-pt-dev / tmpfile.3.pt
TMPFILE(3) Linux Programmer's Manual TMPFILE(3)

tmpfile - create a temporary file

#include <stdio.h>

FILE *tmpfile (void);

The tmpfile() function generates a unique temporary filename using the path prefix P_tmpdir defined in <stdio.h>. The temporary file is then opened in binary read/write (w+b) mode. The file will be automatically deleted when it is closed or the program terminates.

The tmpfile() function returns a stream descriptor, or NULL if a unique filename cannot be generated or the unique file cannot be opened.

Search permission denied for directory in file's path prefix.
Unable to generate a unique filename.
Too many file descriptors in use by process.
Too many files open in system.
Read-only filesystem.

SVID 3, POSIX, BSD 4.3, ISO 9899, SUSv2

mktemp(3), mkstemp(3), tmpnam(3), tempnam(3)

April 3, 1993 GNU