tmp/tmp8yze4ic_/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<iostream>` synopsis <a id="iostream.syn">[[iostream.syn]]</a>
|
| 2 |
+
|
| 3 |
+
``` cpp
|
| 4 |
+
#include <ios> // see [ios.syn]
|
| 5 |
+
#include <streambuf> // see [streambuf.syn]
|
| 6 |
+
#include <istream> // see [istream.syn]
|
| 7 |
+
#include <ostream> // see [ostream.syn]
|
| 8 |
+
|
| 9 |
+
namespace std {
|
| 10 |
+
extern istream cin;
|
| 11 |
+
extern ostream cout;
|
| 12 |
+
extern ostream cerr;
|
| 13 |
+
extern ostream clog;
|
| 14 |
+
|
| 15 |
+
extern wistream wcin;
|
| 16 |
+
extern wostream wcout;
|
| 17 |
+
extern wostream wcerr;
|
| 18 |
+
extern wostream wclog;
|
| 19 |
+
}
|
| 20 |
+
```
|
| 21 |
+
|