MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / dVsprintf

Function dVsprintf

Engine/source/core/strings/stringFunctions.cpp:414–421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

412
413
414S32 dVsprintf(char *buffer, U32 bufferSize, const char *format, va_list arglist)
415{
416 S32 len = vsnprintf(buffer, bufferSize, format, arglist);
417
418 AssertWarn( len < bufferSize, "Buffer too small in call to dVsprintf!" );
419
420 return (len);
421}
422
423
424S32 dSscanf(const char *buffer, const char *format, ...)

Callers 9

consoleErrorMethod · 0.85
_printfFunction · 0.85
evaluatefFunction · 0.85
writeFormattedBufferMethod · 0.85
avarFunction · 0.85
logMethod · 0.85
outputDebugStringMethod · 0.85
logMethod · 0.85
outputDebugStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected