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

Function WriteInt32ToBuffer

base/string/number.cpp:641–644  ·  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

639/// @return end position
640/// @note buffer must be large enougn, and no ending '\0' append
641char* WriteInt32ToBuffer(int32_t n, char* buffer)
642{
643 return OutputInt32AsString(n, buffer);
644}
645
646char* WriteUInt64ToBuffer(uint64_t n, char* buffer)
647{

Callers

nothing calls this directly

Calls 1

OutputInt32AsStringFunction · 0.85

Tested by

no test coverage detected