MCPcopy Create free account
hub / github.com/NVIDIAGameWorks/PhysX / snprintf

Function snprintf

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 13

serializeMethod · 0.85
customizeRenderMethod · 0.85
loadAssetMethod · 0.85
OGLRenderer.cppFile · 0.85
OGLRendererMaterialMethod · 0.85
D3D9RendererMaterialMethod · 0.85
DefaultCpuDispatcherMethod · 0.85
addContentMethod · 0.85
createInstanceMethod · 0.85
createInstanceMethod · 0.85

Calls 1

vsnprintfFunction · 0.85

Tested by

no test coverage detected