output n to buffer as string @return end position @note buffer must be large enougn, and no ending '\0' append
| 597 | /// @return end position |
| 598 | /// @note buffer must be large enougn, and no ending '\0' append |
| 599 | char* WriteInt32ToBuffer(int32_t n, char* buffer) { return OutputInt32AsString(n, buffer); } |
| 600 | |
| 601 | char* WriteUInt64ToBuffer(uint64_t n, char* buffer) { return OutputUInt64AsString(n, buffer); } |
| 602 |
nothing calls this directly
no test coverage detected