Skip to content

Commit 08bd977

Browse files
committed
new page: feof.md and removed nolink
1 parent 73a3b6d commit 08bd977

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

reference/cstdio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
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

reference/cstdio/feof.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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): ??

0 commit comments

Comments
 (0)