| 712 | // output number to buffer as string, with ending '\0' |
| 713 | |
| 714 | char* UInt32ToString(uint32_t u, char* buffer) |
| 715 | { |
| 716 | *OutputUInt32AsString(u, buffer) = '\0'; |
| 717 | return buffer; |
| 718 | } |
| 719 | |
| 720 | char* Int32ToString(int32_t i, char* buffer) |
| 721 | { |
nothing calls this directly
no test coverage detected