From Jason Turner

[stream.types]

Diff to HTML by rtfpessoa

tmp/tmpyq7g3sxr/{from.md → to.md} RENAMED
@@ -1,18 +1,18 @@
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]
18
 
 
1
  ### Types <a id="stream.types">[[stream.types]]</a>
2
 
3
  ``` cpp
4
+ using streamoff = implementation-defined // type of streamoff;
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.[^1]
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.[^2]
18