| 648 | } |
| 649 | |
| 650 | char* Int32ToString(int32_t i, char* buffer) { |
| 651 | *OutputInt32AsString(i, buffer) = '\0'; |
| 652 | return buffer; |
| 653 | } |
| 654 | |
| 655 | char* UInt64ToString(uint64_t u64, char* buffer) { |
| 656 | *OutputUInt64AsString(u64, buffer) = '\0'; |
nothing calls this directly
no test coverage detected