MCPcopy Create free account
hub / github.com/GJDuck/e9patch / fprintf_unlocked

Function fprintf_unlocked

examples/stdlib.c:4213–4220  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4211}
4212
4213static int fprintf_unlocked(FILE *stream, const char *format, ...)
4214{
4215 va_list ap;
4216 va_start(ap, format);
4217 int result = vfprintf_unlocked(stream, format, ap);
4218 va_end(ap);
4219 return result;
4220}
4221
4222static int printf(const char *format, ...)
4223{

Callers 1

entryFunction · 0.85

Calls 1

vfprintf_unlockedFunction · 0.85

Tested by

no test coverage detected