File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 4545| [ ` tmpnam ` ] ( /reference/cstdio/tmpnam.md ) | 一時ファイル名を生成する | |
4646| [ ` fclose ` ] ( /reference/cstdio/fclose.md ) | ファイルを閉じる | |
4747| [ ` fopen ` ] ( /reference/cstdio/fopen.md ) | ファイルを開く | |
48- | [ ` fflush ` ] ( /reference/cstdio/fflush.md.nolink ) | ファイルをフラッシュする | |
48+ | [ ` fflush ` ] ( /reference/cstdio/fflush.md ) | ファイルをフラッシュする | |
4949| [ ` fprintf ` ] ( /reference/cstdio/fprintf.md ) | 書式を指定してファイルに出力する | |
5050| [ ` fscanf ` ] ( /reference/cstdio/fscanf.md ) | 書式を指定してファイルから入力する | |
5151| [ ` vfprintf ` ] ( /reference/cstdio/vfprintf.md.nolink ) | 可変引数リスト` va_list ` を使用し、書式を指定してファイルに出力する | |
Original file line number Diff line number Diff line change 1+ # fflush
2+ * cstdio[ meta header]
3+ * std[ meta namespace]
4+ * function[ meta id-type]
5+
6+ ``` cpp
7+ int fflush (FILE* stream);
8+ ```
9+
10+ ## 概要
11+ ファイルをフラッシュする。
12+
13+ ## 戻り値
14+ 正常に終了した場合、バッファーに何も書き込まれていない場合、読み取り専用で開かれている場合は`0`を返す。
15+
16+ それ以外では`EOF`を返す。
17+
18+ ## 処理系
19+ - [Clang](/implementation.md#clang): ??
20+ - [GCC](/implementation.md#gcc): ??
21+ - [Visual C++](/implementation.md#visual_cpp): ??
You can’t perform that action at this time.
0 commit comments