tmpfile(3) | Library Functions Manual | tmpfile(3) |
tmpfile - crea un fichero temporal
Biblioteca Estándar C (libc, -lc)
#include <stdio.h>
FILE *tmpfile(void);
The tmpfile() function opens a unique temporary file in binary read/write (w+b) mode. The file will be automatically deleted when it is closed or the program terminates.
La función tmpfile() devuelve un descriptor de flujo, o bien NULL si no se puede generar un nombre único de fichero o el fichero único no se puede abrir. En el último caso, se modifica errno para indicar el error.
Para obtener una explicación de los términos usados en esta sección, véase attributes(7).
Interfaz | Atributo | Valor |
tmpfile() | Seguridad del hilo | Multi-hilo seguro |
POSIX.1-2001, POSIX.1-2008, C99, SVr4, 4.3BSD, SUSv2.
POSIX.1-2001 specifies: an error message may be written to stdout if the stream cannot be opened.
The standard does not specify the directory that tmpfile() will use. glibc will try the path prefix P_tmpdir defined in <stdio.h>, and if that fails, then the directory /tmp.
La traducción al español de esta página del manual fue creada por Miguel Pérez Ibars <mpi79470@alu.um.es>
Esta traducción es documentación libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página del manual, envíe un correo electrónico a debian-l10n-spanish@lists.debian.org.
5 Febrero 2023 | Páginas de manual de Linux 6.03 |