table of contents
other languages
FCLOSE(3) | Linux Programmer's Manual | FCLOSE(3) |
NAME¶
fcloseall - 關閉所有打開的流SYNOPSIS 總覽¶
#define _GNU_SOURCE#include <stdio.h>
int fcloseall(void);
DESCRIPTION 描述¶
函數 fcloseall 將所有打開的流與它們底層的文件或功能集合斷開。任何緩衝的數據都將首先被寫入,使用 fflush(3) 。注意標準流 (stdin,stdout 和 stderr) 也被關閉。RETURN VALUE 返回值¶
這個函數總是返回 0。SEE ALSO 參見¶
fclose(3), close(2), fflush(3), fopen(3), setbuf(3)CONFORMING TO 標準參考¶
函數 fcloseall 是一個 GNU 擴展。跋¶
本頁面中文版由中文 man 手冊頁計劃提供。中文 man 手冊頁計劃:https://github.com/man-pages-zh/manpages-zh
1998-04-10 | GNU |