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

Function stasm_printf

jni/stasm/stasm_lib.cpp:318–328  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316}
317
318void stasm_printf( // print to stdout and to the stasm.log file if it is open
319 const char* format, // args like printf
320 ...)
321{
322 char s[SBIG];
323 va_list args;
324 va_start(args, format);
325 VSPRINTF(s, format, args);
326 va_end(args);
327 lputs(s);
328}

Callers

nothing calls this directly

Calls 1

lputsFunction · 0.85

Tested by

no test coverage detected