tmp/tmp7soti0es/{from.md → to.md}
RENAMED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
### Types <a id="stream.types">[[stream.types]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
-
|
| 5 |
```
|
| 6 |
|
| 7 |
The type `streamoff` is a synonym for one of the signed basic integral
|
| 8 |
types of sufficient size to represent the maximum possible file size for
|
| 9 |
the operating system.[^4]
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
-
|
| 13 |
```
|
| 14 |
|
| 15 |
The type `streamsize` is a synonym for one of the signed basic integral
|
| 16 |
types. It is used to represent the number of characters transferred in
|
| 17 |
an I/O operation, or the size of I/O buffers.[^5]
|
|
|
|
| 1 |
### Types <a id="stream.types">[[stream.types]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
+
using streamoff = implementation-defined;
|
| 5 |
```
|
| 6 |
|
| 7 |
The type `streamoff` is a synonym for one of the signed basic integral
|
| 8 |
types of sufficient size to represent the maximum possible file size for
|
| 9 |
the operating system.[^4]
|
| 10 |
|
| 11 |
``` cpp
|
| 12 |
+
using streamsize = implementation-defined;
|
| 13 |
```
|
| 14 |
|
| 15 |
The type `streamsize` is a synonym for one of the signed basic integral
|
| 16 |
types. It is used to represent the number of characters transferred in
|
| 17 |
an I/O operation, or the size of I/O buffers.[^5]
|