The following append operations do not extend the strings and in production mode do NOT check that alloced memory! q_*** methods writes values of parameters itself qs_*** methods writes string representation of value */
| 345 | qs_*** methods writes string representation of value |
| 346 | */ |
| 347 | void q_append(const char c) |
| 348 | { |
| 349 | ASSERT_LENGTH(1); |
| 350 | Ptr[str_length++] = c; |
| 351 | } |
| 352 | void q_append2b(const uint32 n) |
| 353 | { |
| 354 | ASSERT_LENGTH(2); |
no test coverage detected