MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / snprintf

Function snprintf

deps/physx/physx/source/foundation/src/PsString.cpp:62–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60}
61
62int32_t snprintf(char* dst, size_t dstSize, const char* format, ...)
63{
64 va_list arg;
65 va_start(arg, format);
66 int32_t r = shdfnd::vsnprintf(dst, dstSize, format, arg);
67 va_end(arg);
68 return r;
69}
70
71int32_t sscanf(const char* buffer, const char* format, ...)
72{

Callers 15

GetSpirvVersionFunction · 0.85
buildMangledNameMethod · 0.85
getPreambleMethod · 0.85
requireNotRemovedMethod · 0.85
Initialize.cppFile · 0.85
initializeMethod · 0.85
checkGuardBlockMethod · 0.85
insertMethod · 0.85
OutputDoubleFunction · 0.85
OutputConstantUnionFunction · 0.85
getMethod · 0.85
CPPextensionMethod · 0.85

Calls 1

vsnprintfFunction · 0.85

Tested by 1

SDL_TrackAllocationFunction · 0.68