| 653 | } |
| 654 | |
| 655 | char* UInt64ToString(uint64_t u64, char* buffer) { |
| 656 | *OutputUInt64AsString(u64, buffer) = '\0'; |
| 657 | return buffer; |
| 658 | } |
| 659 | |
| 660 | char* Int64ToString(int64_t i, char* buffer) { |
| 661 | *OutputInt64AsString(i, buffer) = '\0'; |
nothing calls this directly
no test coverage detected