| 718 | } |
| 719 | |
| 720 | char* Int32ToString(int32_t i, char* buffer) |
| 721 | { |
| 722 | *OutputInt32AsString(i, buffer) = '\0'; |
| 723 | return buffer; |
| 724 | } |
| 725 | |
| 726 | char* UInt64ToString(uint64_t u64, char* buffer) |
| 727 | { |
nothing calls this directly
no test coverage detected