MCPcopy Create free account
hub / github.com/crownengine/crown / reverse

Function reverse

3rdparty/bx/src/dtoa.cpp:463–469  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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)

Callers 5

IsLegalMethod · 0.85
alu.cppFile · 0.85
BuildBFormatHrtfFunction · 0.85
toStringUnsignedFunction · 0.85

Calls 1

swapFunction · 0.70

Tested by

no test coverage detected