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

Function printf

examples/stdlib.c:4222–4229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4220}
4221
4222static int printf(const char *format, ...)
4223{
4224 va_list ap;
4225 va_start(ap, format);
4226 int result = vfprintf(stdout, format, ap);
4227 va_end(ap);
4228 return result;
4229}
4230
4231static int printf_unlocked(const char *format, ...)
4232{

Callers 7

data_func_2Function · 0.50
invokeFunction · 0.50
mainFunction · 0.50
runTestFunction · 0.50
mainFunction · 0.50
test_qsortFunction · 0.50
realMainFunction · 0.50

Calls 1

vfprintfFunction · 0.70

Tested by 6

data_func_2Function · 0.40
invokeFunction · 0.40
mainFunction · 0.40
runTestFunction · 0.40
mainFunction · 0.40
test_qsortFunction · 0.40