output n to buffer as string @return end position @note buffer must be large enougn, and no ending '\0' append
| 631 | /// @return end position |
| 632 | /// @note buffer must be large enougn, and no ending '\0' append |
| 633 | char* WriteUInt32ToBuffer(uint32_t n, char* buffer) |
| 634 | { |
| 635 | return OutputUInt32AsString(n, buffer); |
| 636 | } |
| 637 | |
| 638 | /// output n to buffer as string |
| 639 | /// @return end position |
nothing calls this directly
no test coverage detected