fcloseall(3) Library Functions Manual fcloseall(3) NOMBRE fcloseall - cierra todos los flujos abiertos BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #define _GNU_SOURCE /* Vea feature_test_macros(7) */ #include int fcloseall(void); DESCRIPCION The fcloseall() function closes all of the calling process's open streams. Buffered output for each stream is written before it is closed (as for fflush(3)); buffered input is discarded. Tambien se cierran los flujos estandar: stdin, stdout y stderr. VALOR DEVUELTO La funcion devuelve cero si se han cerrado todos los archivos. Si sucedio algun error, se devuelve EOF. ATRIBUTOS Para obtener una explicacion de los terminos usados en esta seccion, vease attributes(7). +------------------------+--------------------+------------------------+ |Interfaz | Atributo | Valor | +------------------------+--------------------+------------------------+ |fcloseall() | Seguridad del hilo | MT-Unsafe race:streams | +------------------------+--------------------+------------------------+ The fcloseall() function does not lock the streams, so it is not thread-safe. ESTANDARES GNU. VEASE TAMBIEN close(2), fclose(3), fflush(3), fopen(3), setbuf(3) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Miguel Perez Ibars y Marcos Fouces Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 fcloseall(3)