tmp/tmplsvdnd9j/{from.md → to.md}
RENAMED
|
@@ -1,23 +1,25 @@
|
|
| 1 |
##### Buffer management and positioning <a id="streambuf.buffer">[[streambuf.buffer]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
basic_streambuf
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `setbuf(s, n)`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
pos_type pubseekoff(off_type off, ios_base::seekdir way,
|
| 11 |
-
|
|
|
|
| 12 |
```
|
| 13 |
|
| 14 |
*Returns:* `seekoff(off, way, which)`.
|
| 15 |
|
| 16 |
``` cpp
|
| 17 |
pos_type pubseekpos(pos_type sp,
|
| 18 |
-
|
|
|
|
| 19 |
```
|
| 20 |
|
| 21 |
*Returns:* `seekpos(sp, which)`.
|
| 22 |
|
| 23 |
``` cpp
|
|
|
|
| 1 |
##### Buffer management and positioning <a id="streambuf.buffer">[[streambuf.buffer]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
basic_streambuf* pubsetbuf(char_type* s, streamsize n);
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `setbuf(s, n)`.
|
| 8 |
|
| 9 |
``` cpp
|
| 10 |
pos_type pubseekoff(off_type off, ios_base::seekdir way,
|
| 11 |
+
ios_base::openmode which
|
| 12 |
+
= ios_base::in | ios_base::out);
|
| 13 |
```
|
| 14 |
|
| 15 |
*Returns:* `seekoff(off, way, which)`.
|
| 16 |
|
| 17 |
``` cpp
|
| 18 |
pos_type pubseekpos(pos_type sp,
|
| 19 |
+
ios_base::openmode which
|
| 20 |
+
= ios_base::in | ios_base::out);
|
| 21 |
```
|
| 22 |
|
| 23 |
*Returns:* `seekpos(sp, which)`.
|
| 24 |
|
| 25 |
``` cpp
|