MCPcopy Create free account
hub / github.com/IntegralPilot/wasm_os / printf

Function printf

stdlib/c/stdio.c:172–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170}
171
172int printf(const char *format, ...) {
173 va_list args;
174 va_start(args, format);
175 int count = vprintf(format, args);
176 va_end(args);
177 return count;
178}
179
180#endif

Callers 5

printFibFunction · 0.85
mainFunction · 0.85
_startFunction · 0.85
_startFunction · 0.85
_startFunction · 0.85

Calls 1

vprintfFunction · 0.85

Tested by

no test coverage detected