| 724 | } |
| 725 | |
| 726 | char* UInt64ToString(uint64_t u64, char* buffer) |
| 727 | { |
| 728 | *OutputUInt64AsString(u64, buffer) = '\0'; |
| 729 | return buffer; |
| 730 | } |
| 731 | |
| 732 | char* Int64ToString(int64_t i, char* buffer) |
| 733 | { |
nothing calls this directly
no test coverage detected