output n to buffer as string @return end position @note buffer must be large enougn, and no ending '\0' append
| 639 | /// @return end position |
| 640 | /// @note buffer must be large enougn, and no ending '\0' append |
| 641 | char* WriteInt32ToBuffer(int32_t n, char* buffer) |
| 642 | { |
| 643 | return OutputInt32AsString(n, buffer); |
| 644 | } |
| 645 | |
| 646 | char* WriteUInt64ToBuffer(uint64_t n, char* buffer) |
| 647 | { |
nothing calls this directly
no test coverage detected