From Jason Turner

[narrow.stream.objects]

Diff to HTML by rtfpessoa

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