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 參見¶
CONFORMING TO 標準參考¶
函式 fcloseall 是一個 GNU 擴充套件。
跋¶
本頁面中文版由中文
man 手冊頁計劃提供。
中文 man
手冊頁計劃:https://github.com/man-pages-zh/manpages-zh
1998-04-10 | GNU |