 |
Laboratorio de Telemática |
Cuarto curso de Ingeniería de Telecomunicación |
|
|
tmpfile(3S) Standard I/O Functions tmpfile(3S)
NAME
tmpfile - create a temporary file
SYNOPSIS
#include <stdio.h>
FILE *tmpfile(void);
MT-LEVEL
Safe
DESCRIPTION
tmpfile() creates a temporary file using a name generated by
the tmpnam() routine and returns a corresponding FILE
pointer. If the file cannot be opened, a NULL pointer is
returned. The file is automatically deleted when the pro-
cess using it terminates or when the file is closed. The
file is opened for update (``w+'').
SEE ALSO
creat(2), open(2), unlink(2), fopen(3S), mktemp(3C),
perror(3C), stdio(3S), tmpnam(3S)
SunOS 5.5.1 Last change: 22 Jan 1993 1