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

Function dVsprintf

Engine/source/core/strings/stringFunctions.cpp:476–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

474
475
476S32 dVsprintf(char *buffer, U32 bufferSize, const char *format, va_list arglist)
477{
478 S32 len = vsnprintf(buffer, bufferSize, format, arglist);
479
480 AssertWarn( len < bufferSize, "Buffer too small in call to dVsprintf!" );
481
482 return (len);
483}
484
485
486S32 dSscanf(const char *buffer, const char *format, ...)

Callers 8

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

Calls

no outgoing calls

Tested by

no test coverage detected