File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 6262| [ ` ftell ` ] ( /reference/cstdio/ftell.md.nolink ) | ファイルの現在位置を取得する | |
6363| [ ` rewind ` ] ( /reference/cstdio/rewind.md.nolink ) | ファイルの現在位置を先頭に戻し、エラーや終端判定をクリアする | |
6464| [ ` clearerr ` ] ( /reference/cstdio/clearerr.md.nolink ) | エラーをクリアする | |
65- | [ ` feof ` ] ( /reference/cstdio/feof.md.nolink ) | ファイルが終端に到達したか判定する | |
65+ | [ ` feof ` ] ( /reference/cstdio/feof.md ) | ファイルが終端に到達したか判定する | |
6666| [ ` ferror ` ] ( /reference/cstdio/ferror.md.nolink ) | ファイルストリームがエラー状態かを判定する | |
6767| [ ` perror ` ] ( /reference/cstdio/perror.md.nolink ) | システムエラーメッセージを出力する | |
6868
Original file line number Diff line number Diff line change 1+ # feof
2+ * cstdio[ meta header]
3+ * std[ meta namespace]
4+ * function[ meta id-type]
5+
6+ ``` cpp
7+ int feof (FILE* stream);
8+ ```
9+
10+ ## 概要
11+ ファイルの終端に達したかを判定する。
12+
13+ ## 戻り値
14+ ファイルの終端に達した場合は`0`以外を、そうでなければ`0`を返す。
15+
16+ ## 処理系
17+ - [Clang](/implementation.md#clang): ??
18+ - [GCC](/implementation.md#gcc): ??
19+ - [Visual C++](/implementation.md#visual_cpp): ??
You can’t perform that action at this time.
0 commit comments