MCPcopy Create free account
hub / github.com/baidu/tera / UInt32ToString

Function UInt32ToString

src/common/base/string_number.cc:645–648  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

643// output number to buffer as string, with ending '\0'
644
645char* UInt32ToString(uint32_t u, char* buffer) {
646 *OutputUInt32AsString(u, buffer) = '\0';
647 return buffer;
648}
649
650char* Int32ToString(int32_t i, char* buffer) {
651 *OutputInt32AsString(i, buffer) = '\0';

Callers

nothing calls this directly

Calls 1

OutputUInt32AsStringFunction · 0.85

Tested by

no test coverage detected