Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
172
int 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
printFib
Function · 0.85
main
Function · 0.85
_start
Function · 0.85
_start
Function · 0.85
_start
Function · 0.85
Calls
1
vprintf
Function · 0.85
Tested by
no test coverage detected