MCPcopy Index your code
hub / github.com/GJDuck/e9patch / fprintf

Function fprintf

examples/stdlib.c:4204–4211  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4202}
4203
4204static int fprintf(FILE *stream, const char *format, ...)
4205{
4206 va_list ap;
4207 va_start(ap, format);
4208 int result = vfprintf(stream, format, ap);
4209 va_end(ap);
4210 return result;
4211}
4212
4213static int fprintf_unlocked(FILE *stream, const char *format, ...)
4214{

Callers 15

entryFunction · 0.70
perrorFunction · 0.70
entryFunction · 0.70
checkFunction · 0.70
initFunction · 0.70
initFunction · 0.70
finiFunction · 0.70
entryFunction · 0.70
entryFunction · 0.70
entryFunction · 0.70
_mmapFunction · 0.50
initFunction · 0.50

Calls 1

vfprintfFunction · 0.70

Tested by 9

mainFunction · 0.40
runTestFunction · 0.40
test_memsetFunction · 0.40
test_memcpyFunction · 0.40
test_freadFunction · 0.40
test_stdioFunction · 0.40
test_stringFunction · 0.40
test_statFunction · 0.40
test_treeFunction · 0.40