MCPcopy Create free account
hub / github.com/cuberite/cuberite / uintToString

Function uintToString

lib/jsoncpp/src/lib_json/json_writer.cpp:30–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28 return false;
29}
30static void uintToString( unsigned int value,
31 char *&current )
32{
33 *--current = 0;
34 do
35 {
36 *--current = (value % 10) + '0';
37 value /= 10;
38 }
39 while ( value != 0 );
40}
41
42std::string valueToString( Int value )
43{

Callers 1

valueToStringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected