output n to buffer as string @return end position @note buffer must be large enougn, and no ending '\0' append
| 592 | /// @return end position |
| 593 | /// @note buffer must be large enougn, and no ending '\0' append |
| 594 | char* WriteUInt32ToBuffer(uint32_t n, char* buffer) { return OutputUInt32AsString(n, buffer); } |
| 595 | |
| 596 | /// output n to buffer as string |
| 597 | /// @return end position |
nothing calls this directly
no test coverage detected