Skip to content

Commit cb399db

Browse files
committed
new page: fflush and removed nolink
1 parent 0e0d859 commit cb399db

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

reference/cstdio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
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`を使用し、書式を指定してファイルに出力する | |

reference/cstdio/fflush.md

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

0 commit comments

Comments
 (0)