tmp/tmprdzoz9qp/{from.md → to.md}
RENAMED
|
@@ -19,16 +19,18 @@ sequences that follow a few uniform conventions:
|
|
| 19 |
basic character set.
|
| 20 |
- The *decimal-point character* is the locale-specific (single-byte)
|
| 21 |
character used by functions that convert between a (single-byte)
|
| 22 |
character sequence and a value of one of the floating-point types. It
|
| 23 |
is used in the character sequence to denote the beginning of a
|
| 24 |
-
fractional part. It is represented in [[support]] through [[
|
| 25 |
-
|
| 26 |
locale.
|
| 27 |
- A *character sequence* is an array object [[dcl.array]] `A` that can
|
| 28 |
be declared as `T A[N]`, where `T` is any of the types `char`,
|
| 29 |
`unsigned char`, or `signed char` [[basic.fundamental]], optionally
|
| 30 |
qualified by any combination of `const` or `volatile`. The initial
|
| 31 |
elements of the array have defined contents up to and including an
|
| 32 |
element determined by some predicate. A character sequence can be
|
| 33 |
designated by a pointer value `S` that points to its first element.
|
|
|
|
|
|
|
| 34 |
|
|
|
|
| 19 |
basic character set.
|
| 20 |
- The *decimal-point character* is the locale-specific (single-byte)
|
| 21 |
character used by functions that convert between a (single-byte)
|
| 22 |
character sequence and a value of one of the floating-point types. It
|
| 23 |
is used in the character sequence to denote the beginning of a
|
| 24 |
+
fractional part. It is represented in [[support]] through [[exec]] and
|
| 25 |
+
[[depr]] by a period, `'.'`, which is also its value in the `"C"`
|
| 26 |
locale.
|
| 27 |
- A *character sequence* is an array object [[dcl.array]] `A` that can
|
| 28 |
be declared as `T A[N]`, where `T` is any of the types `char`,
|
| 29 |
`unsigned char`, or `signed char` [[basic.fundamental]], optionally
|
| 30 |
qualified by any combination of `const` or `volatile`. The initial
|
| 31 |
elements of the array have defined contents up to and including an
|
| 32 |
element determined by some predicate. A character sequence can be
|
| 33 |
designated by a pointer value `S` that points to its first element.
|
| 34 |
+
- Let *`STATICALLY-WIDEN`*`<charT>("...")` be `"..."` if `charT` is
|
| 35 |
+
`char` and `L"..."` if `charT` is `wchar_t`.
|
| 36 |
|