Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 532 Bytes

File metadata and controls

23 lines (18 loc) · 532 Bytes

fflush

  • cstdio[meta header]
  • std[meta namespace]
  • function[meta id-type]
namespace std {
  int fflush(FILE* stream);
}

概要

ファイルをフラッシュする。

戻り値

正常に終了した場合、バッファーに何も書き込まれていない場合、読み取り専用で開かれている場合は0を返す。

それ以外ではEOFを返す。

処理系