Skip to content

Commit a244c92

Browse files
committed
cstdio : C++のC互換ライブラリの関数はstd名前空間
1 parent fe03d64 commit a244c92

File tree

14 files changed

+42
-14
lines changed

14 files changed

+42
-14
lines changed

reference/cstdio/fclose.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fclose(FILE* stream);
7+
namespace std {
8+
int fclose(FILE* stream);
9+
}
810
```
911
1012
## 概要

reference/cstdio/feof.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int feof(FILE* stream);
7+
namespace std {
8+
int feof(FILE* stream);
9+
}
810
```
911
1012
## 概要

reference/cstdio/fflush.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fflush(FILE* stream);
7+
namespace std {
8+
int fflush(FILE* stream);
9+
}
810
```
911
1012
## 概要

reference/cstdio/fgetc.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fgetc( FILE* stream );
7+
namespace std {
8+
int fgetc( FILE* stream );
9+
}
810
```
911
1012
## 概要

reference/cstdio/fgets.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
char* fgets( char* restrict str, int count, FILE* restrict stream );
7+
namespace std {
8+
char* fgets( char* restrict str, int count, FILE* restrict stream );
9+
}
810
```
911
1012
## 概要

reference/cstdio/fopen.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
FILE* fopen(const char* filename, const char* mode);
7+
namespace std {
8+
FILE* fopen(const char* filename, const char* mode);
9+
}
810
```
911
1012
## 概要

reference/cstdio/fprintf.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fprintf( FILE* restrict stream, const char* restrict format, ... );
7+
namespace std {
8+
int fprintf( FILE* restrict stream, const char* restrict format, ... );
9+
}
810
```
911
1012
## 概要

reference/cstdio/fputc.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fputc( int ch, FILE* stream );
7+
namespace std {
8+
int fputc( int ch, FILE* stream );
9+
}
810
```
911
1012
## 概要

reference/cstdio/fputs.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fputs(const char* str, FILE* stream);
7+
namespace std {
8+
int fputs(const char* str, FILE* stream);
9+
}
810
```
911
1012
## 概要

reference/cstdio/fscanf.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
* function[meta id-type]
55

66
```cpp
7-
int fscanf( FILE* restrict stream, const char* restrict format, ... );
7+
namespace std {
8+
int fscanf( FILE* restrict stream, const char* restrict format, ... );
9+
}
810
```
911
1012
## 概要

0 commit comments

Comments
 (0)