MCPcopy Create free account
hub / github.com/chen3feng/toft / WriteUInt32ToBuffer

Function WriteUInt32ToBuffer

base/string/number.cpp:633–636  ·  view source on GitHub ↗

output n to buffer as string @return end position @note buffer must be large enougn, and no ending '\0' append

Source from the content-addressed store, hash-verified

631/// @return end position
632/// @note buffer must be large enougn, and no ending '\0' append
633char* 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

Callers

nothing calls this directly

Calls 1

OutputUInt32AsStringFunction · 0.85

Tested by

no test coverage detected