tmp/tmpzs8jb6fd/{from.md → to.md}
RENAMED
|
@@ -8,16 +8,20 @@ namespace std {
|
|
| 8 |
template<class... Args>
|
| 9 |
void print(FILE* stream, format_string<Args...> fmt, Args&&... args);
|
| 10 |
|
| 11 |
template<class... Args>
|
| 12 |
void println(format_string<Args...> fmt, Args&&... args);
|
|
|
|
| 13 |
template<class... Args>
|
| 14 |
void println(FILE* stream, format_string<Args...> fmt, Args&&... args);
|
|
|
|
| 15 |
|
| 16 |
void vprint_unicode(string_view fmt, format_args args);
|
| 17 |
void vprint_unicode(FILE* stream, string_view fmt, format_args args);
|
|
|
|
| 18 |
|
| 19 |
void vprint_nonunicode(string_view fmt, format_args args);
|
| 20 |
void vprint_nonunicode(FILE* stream, string_view fmt, format_args args);
|
|
|
|
| 21 |
}
|
| 22 |
```
|
| 23 |
|
|
|
|
| 8 |
template<class... Args>
|
| 9 |
void print(FILE* stream, format_string<Args...> fmt, Args&&... args);
|
| 10 |
|
| 11 |
template<class... Args>
|
| 12 |
void println(format_string<Args...> fmt, Args&&... args);
|
| 13 |
+
void println();
|
| 14 |
template<class... Args>
|
| 15 |
void println(FILE* stream, format_string<Args...> fmt, Args&&... args);
|
| 16 |
+
void println(FILE* stream);
|
| 17 |
|
| 18 |
void vprint_unicode(string_view fmt, format_args args);
|
| 19 |
void vprint_unicode(FILE* stream, string_view fmt, format_args args);
|
| 20 |
+
void vprint_unicode_buffered(FILE* stream, string_view fmt, format_args args);
|
| 21 |
|
| 22 |
void vprint_nonunicode(string_view fmt, format_args args);
|
| 23 |
void vprint_nonunicode(FILE* stream, string_view fmt, format_args args);
|
| 24 |
+
void vprint_nonunicode_buffered(FILE* stream, string_view fmt, format_args args);
|
| 25 |
}
|
| 26 |
```
|
| 27 |
|