| 643 | // output number to buffer as string, with ending '\0' |
| 644 | |
| 645 | char* UInt32ToString(uint32_t u, char* buffer) { |
| 646 | *OutputUInt32AsString(u, buffer) = '\0'; |
| 647 | return buffer; |
| 648 | } |
| 649 | |
| 650 | char* Int32ToString(int32_t i, char* buffer) { |
| 651 | *OutputInt32AsString(i, buffer) = '\0'; |
nothing calls this directly
no test coverage detected