MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / ssprintf

Function ssprintf

jni/stasm/misc.cpp:23–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21// Like sprintf but returns the string and so doesn't require a buffer arg.
22
23const char* ssprintf(const char* format, ...)
24{
25 static char s[SBIG];
26 va_list args;
27 va_start(args, format);
28 VSPRINTF(s, format, args);
29 va_end(args);
30 return s;
31}
32
33// Like strncpy but always zero terminate, issue error if can't.
34

Callers 1

TraceFacesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected