FCLOSEALL

Section: Linux Programmer's Manual (3)
Updated: 2006-12-27
Index JM Home Page roff page
 

名前

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)


 

Index

名前
書式
説明
返り値
準拠
関連項目

This document was created by man2html, using the manual pages.
Time: 04:31:39 GMT, November 19, 2007