tmp/tmpquhulzng/{from.md → to.md}
RENAMED
|
@@ -1,15 +1,15 @@
|
|
| 1 |
###### Byte strings <a id="byte.strings">[[byte.strings]]</a>
|
| 2 |
|
| 3 |
A *null-terminated byte string*, or NTBS, is a character sequence whose
|
| 4 |
highest-addressed element with defined content has the value zero (the
|
| 5 |
-
*terminating null
|
| 6 |
value zero. [^9]
|
| 7 |
|
| 8 |
-
The *length
|
| 9 |
-
terminating null character. An *empty
|
| 10 |
|
| 11 |
-
The *value
|
| 12 |
and including the terminating null character.
|
| 13 |
|
| 14 |
-
A *static
|
| 15 |
|
|
|
|
| 1 |
###### Byte strings <a id="byte.strings">[[byte.strings]]</a>
|
| 2 |
|
| 3 |
A *null-terminated byte string*, or NTBS, is a character sequence whose
|
| 4 |
highest-addressed element with defined content has the value zero (the
|
| 5 |
+
*terminating null character*); no other element in the sequence has the
|
| 6 |
value zero. [^9]
|
| 7 |
|
| 8 |
+
The *length of an NTBS* is the number of elements that precede the
|
| 9 |
+
terminating null character. An *empty NTBS* has a length of zero.
|
| 10 |
|
| 11 |
+
The *value of an NTBS* is the sequence of values of the elements up to
|
| 12 |
and including the terminating null character.
|
| 13 |
|
| 14 |
+
A *static NTBS* is an NTBS with static storage duration.[^10]
|
| 15 |
|