| 461 | } |
| 462 | |
| 463 | static void reverse(char* _dst, int32_t _len) |
| 464 | { |
| 465 | for (int32_t ii = 0, jj = _len - 1; ii < jj; ++ii, --jj) |
| 466 | { |
| 467 | swap(_dst[ii], _dst[jj]); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | template<typename Ty> |
| 472 | int32_t toStringSigned(char* _dst, int32_t _max, Ty _value, uint32_t _base, char _separator) |
no test coverage detected