tmp/tmp4encpgn5/{from.md → to.md}
RENAMED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
### Header `<strstream>` synopsis <a id="depr.strstream.syn">[[depr.strstream.syn]]</a>
|
| 2 |
+
|
| 3 |
+
The header `<strstream>` defines types that associate stream buffers
|
| 4 |
+
with character array objects and assist reading and writing such
|
| 5 |
+
objects.
|
| 6 |
+
|
| 7 |
+
``` cpp
|
| 8 |
+
namespace std {
|
| 9 |
+
class strstreambuf;
|
| 10 |
+
class istrstream;
|
| 11 |
+
class ostrstream;
|
| 12 |
+
class strstream;
|
| 13 |
+
}
|
| 14 |
+
```
|
| 15 |
+
|