tmp/tmp2vgh0g73/{from.md → to.md}
RENAMED
|
@@ -5,16 +5,17 @@ explicit istrstream(const char* s);
|
|
| 5 |
explicit istrstream(char* s);
|
| 6 |
```
|
| 7 |
|
| 8 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 9 |
base class with `istream(&sb)` and initializing `sb` with
|
| 10 |
-
`strstreambuf(s,0)
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
istrstream(const char* s, streamsize n);
|
|
|
|
| 14 |
```
|
| 15 |
|
| 16 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 17 |
base class with `istream(&sb)` and initializing `sb` with
|
| 18 |
-
`strstreambuf(s,n)
|
| 19 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 20 |
|
|
|
|
| 5 |
explicit istrstream(char* s);
|
| 6 |
```
|
| 7 |
|
| 8 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 9 |
base class with `istream(&sb)` and initializing `sb` with
|
| 10 |
+
`strstreambuf(s,0)`. `s` shall designate the first element of an NTBS.
|
| 11 |
|
| 12 |
``` cpp
|
| 13 |
istrstream(const char* s, streamsize n);
|
| 14 |
+
istrstream(char* s, streamsize n);
|
| 15 |
```
|
| 16 |
|
| 17 |
*Effects:* Constructs an object of class `istrstream`, initializing the
|
| 18 |
base class with `istream(&sb)` and initializing `sb` with
|
| 19 |
+
`strstreambuf(s,n)`. `s` shall designate the first element of an array
|
| 20 |
whose length is `n` elements, and `n` shall be greater than zero.
|
| 21 |
|