FCLOSE(3) | Linux Programmer's Manual | FCLOSE(3) |
fcloseall - 關閉所有打開的流
#define _GNU_SOURCE
#include <stdio.h>
int fcloseall(void);
函數 fcloseall 將所有打開的流與它們底層的文件或功能集合斷開。任何緩衝的數據都將首先被寫入,使用 fflush(3) 。注意標準流 (stdin,stdout 和 stderr) 也被關閉。
這個函數總是返回 0。
函數 fcloseall 是一個 GNU 擴展。
本頁面中文版由中文
man 手冊頁計劃提供。
中文 man
手冊頁計劃:https://github.com/man-pages-zh/manpages-zh
1998-04-10 | GNU |