MCPcopy Create free account
hub / github.com/crownengine/crown / printf

Function printf

3rdparty/bx/src/string.cpp:1285–1293  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1283 }
1284
1285 int32_t printf(const char* _format, ...)
1286 {
1287 va_list argList;
1288 va_start(argList, _format);
1289 int32_t total = vprintf(_format, argList);
1290 va_end(argList);
1291
1292 return total;
1293 }
1294
1295 static const char s_units[] = { 'B', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' };
1296

Callers 15

compress_blockFunction · 0.50
printFunction · 0.50
printxFunction · 0.50
printFunction · 0.50
printxFunction · 0.50
convertFunction · 0.50
helpFunction · 0.50
mainFunction · 0.50
handle_rvalueMethod · 0.50
use_channelsMethod · 0.50
visit_leaveMethod · 0.50

Calls 1

vprintfFunction · 0.85

Tested by

no test coverage detected