Rechercher une page de manuel
fcloseall
Langue: ja
Version: 2006-12-27 (fedora - 25/11/07)
Section: 3 (Bibliothèques de fonctions)
名前
fcloseall - 開いているすべてのストリームを閉じる書式
#define _GNU_SOURCE #include <stdio.h> int fcloseall(void);
説明
fcloseall() 関数は、呼び出し元プロセスが開いているすべてのストリームを閉じる。 ストリームを閉じる前に、 (fflush(3) と同じように) 各ストリームのバッファに溜っている出力データは書き出される。 入力バッファ内のデータは破棄される。標準入出力 stdin, stdout, stderr も閉じられる。
返り値
この関数は、すべてのファイルが正常に閉じられた場合 0 を返す。 エラーの場合、 EOF を返す。準拠
この関数は GNU 拡張である。関連項目
close(2), fclose(3), fflush(3), fopen(3), setbuf(3), feature_test_macros(7)Contenus ©2006-2024 Benjamin Poulain
Design ©2006-2024 Maxime Vantorre