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

Function sscanf

physx/source/foundation/src/PsString.cpp:71–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69}
70
71int32_t sscanf(const char* buffer, const char* format, ...)
72{
73 va_list arg;
74 va_start(arg, format);
75#if (PX_VC < 12) && !PX_LINUX
76 int32_t r = ::sscanf(buffer, format, arg);
77#else
78 int32_t r = ::vsscanf(buffer, format, arg);
79#endif
80 va_end(arg);
81
82 return r;
83}
84
85size_t strlcpy(char* dst, size_t dstSize, const char* src)
86{

Callers 4

getBlockIntMethod · 0.85
getBlockU32Method · 0.85
getBlockFloatMethod · 0.85
getBlockFloatsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected