The following append operations do NOT check alloced memory q_*** methods writes values of parameters itself qs_*** methods writes string representation of value */
| 455 | qs_*** methods writes string representation of value |
| 456 | */ |
| 457 | void q_append(const char c) |
| 458 | { |
| 459 | Ptr[str_length++] = c; |
| 460 | } |
| 461 | void q_append(const uint32 n) |
| 462 | { |
| 463 | int4store(Ptr + str_length, n); |