MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / vprintf

Function vprintf

Source/3rdParty/bx/src/string.cpp:1274–1283  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1272 }
1273
1274 int32_t vprintf(const char* _format, va_list _argList)
1275 {
1276 Error err;
1277 va_list argListCopy;
1278 va_copy(argListCopy, _argList);
1279 int32_t total = write(getStdOut(), _format, argListCopy, &err);
1280 va_end(argListCopy);
1281
1282 return total;
1283 }
1284
1285 int32_t printf(const char* _format, ...)
1286 {

Callers 3

printfFunction · 0.70
fatalFunction · 0.50
traceFunction · 0.50

Calls 2

getStdOutFunction · 0.85
writeFunction · 0.70

Tested by

no test coverage detected