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

Function IntegerToString

base/string/number.cpp:742–746  ·  view source on GitHub ↗

----------------------------------------------------- interface for int to string or buffer Make sure the buffer is big enough -----------------------------------------------------

Source from the content-addressed store, hash-verified

740// Make sure the buffer is big enough
741// -----------------------------------------------------
742char* IntegerToString(int i, char* buffer)
743{
744 *OutputIntegerAsString(i, buffer) = '\0';
745 return buffer;
746}
747
748char* IntegerToString(unsigned int i, char* buffer)
749{

Callers 7

CreateNodeFunction · 0.85
NumberToStringFunction · 0.85
TESTFunction · 0.85
TEST_FFunction · 0.85
WriteIntMethod · 0.85
RequestMethod · 0.85

Calls 1

OutputIntegerAsStringFunction · 0.85

Tested by 2

TESTFunction · 0.68
TEST_FFunction · 0.68