tmp/tmpid80irjw/{from.md → to.md}
RENAMED
|
@@ -3,36 +3,36 @@
|
|
| 3 |
``` cpp
|
| 4 |
wistream wcin;
|
| 5 |
```
|
| 6 |
|
| 7 |
The object `wcin` controls input from a stream buffer associated with
|
| 8 |
-
the object `stdin`, declared in `<cstdio>`.
|
| 9 |
|
| 10 |
After the object `wcin` is initialized, `wcin.tie()` returns `&wcout`.
|
| 11 |
Its state is otherwise the same as required for
|
| 12 |
`basic_ios<wchar_t>::init` ([[basic.ios.cons]]).
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
wostream wcout;
|
| 16 |
```
|
| 17 |
|
| 18 |
The object `wcout` controls output to a stream buffer associated with
|
| 19 |
-
the object `stdout`, declared in `<cstdio>` ([[
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
wostream wcerr;
|
| 23 |
```
|
| 24 |
|
| 25 |
The object `wcerr` controls output to a stream buffer associated with
|
| 26 |
-
the object `stderr`, declared in `<cstdio>` ([[
|
| 27 |
|
| 28 |
After the object `wcerr` is initialized, `wcerr.flags() & unitbuf` is
|
| 29 |
nonzero and `wcerr.tie()` returns `&wcout`. Its state is otherwise the
|
| 30 |
same as required for `basic_ios<wchar_t>::init` ([[basic.ios.cons]]).
|
| 31 |
|
| 32 |
``` cpp
|
| 33 |
wostream wclog;
|
| 34 |
```
|
| 35 |
|
| 36 |
The object `wclog` controls output to a stream buffer associated with
|
| 37 |
-
the object `stderr`, declared in `<cstdio>` ([[
|
| 38 |
|
|
|
|
| 3 |
``` cpp
|
| 4 |
wistream wcin;
|
| 5 |
```
|
| 6 |
|
| 7 |
The object `wcin` controls input from a stream buffer associated with
|
| 8 |
+
the object `stdin`, declared in `<cstdio>` ([[cstdio.syn]]).
|
| 9 |
|
| 10 |
After the object `wcin` is initialized, `wcin.tie()` returns `&wcout`.
|
| 11 |
Its state is otherwise the same as required for
|
| 12 |
`basic_ios<wchar_t>::init` ([[basic.ios.cons]]).
|
| 13 |
|
| 14 |
``` cpp
|
| 15 |
wostream wcout;
|
| 16 |
```
|
| 17 |
|
| 18 |
The object `wcout` controls output to a stream buffer associated with
|
| 19 |
+
the object `stdout`, declared in `<cstdio>` ([[cstdio.syn]]).
|
| 20 |
|
| 21 |
``` cpp
|
| 22 |
wostream wcerr;
|
| 23 |
```
|
| 24 |
|
| 25 |
The object `wcerr` controls output to a stream buffer associated with
|
| 26 |
+
the object `stderr`, declared in `<cstdio>` ([[cstdio.syn]]).
|
| 27 |
|
| 28 |
After the object `wcerr` is initialized, `wcerr.flags() & unitbuf` is
|
| 29 |
nonzero and `wcerr.tie()` returns `&wcout`. Its state is otherwise the
|
| 30 |
same as required for `basic_ios<wchar_t>::init` ([[basic.ios.cons]]).
|
| 31 |
|
| 32 |
``` cpp
|
| 33 |
wostream wclog;
|
| 34 |
```
|
| 35 |
|
| 36 |
The object `wclog` controls output to a stream buffer associated with
|
| 37 |
+
the object `stderr`, declared in `<cstdio>` ([[cstdio.syn]]).
|
| 38 |
|