| 200 | } |
| 201 | |
| 202 | char* UInt32ToHexString(uint32_t value, char* buffer) { |
| 203 | *WriteHexUInt32ToBuffer(value, buffer) = '\0'; |
| 204 | return buffer; |
| 205 | } |
| 206 | |
| 207 | char* UInt64ToHexString(uint64_t value, char* buffer) { |
| 208 | *WriteHexUInt64ToBuffer(value, buffer) = '\0'; |