MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / dSprintf

Function dSprintf

engine/source/platformEmscripten/EmscriptenStrings.cpp:321–329  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

319}
320
321int dSprintf(char *buffer, dsize_t bufferSize, const char *format, ...)
322{
323 va_list args;
324 va_start(args, format);
325 S32 len = vsnprintf(buffer, bufferSize, format, args);
326 va_end(args);
327
328 return (len);
329}
330
331int dVsprintf(char *buffer, dsize_t bufferSize, const char *format, va_list arglist)
332{

Callers 12

setScreenModeMethod · 0.70
getDriverInfoMethod · 0.70
MungePathFunction · 0.70
RecurseDumpPathFunction · 0.70
isSubDirectoryMethod · 0.70
hasSubDirectoryMethod · 0.70
recurseDumpDirectoriesFunction · 0.70
ConsoleFunctionFunction · 0.70
getKeyNameFunction · 0.70
JoystickInputDeviceMethod · 0.70
loadAxisInfoMethod · 0.70
getJoystickAxesStringMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected