MCPcopy Index your code
hub / github.com/NetHack/NetHack / vprintf

Function vprintf

outdated/sys/wince/celib.c:837–845  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

835}
836
837int __cdecl vprintf(const char *format, va_list args)
838{
839 char buf[4096];
840 int retval;
841
842 retval = vsprintf(buf, format, args);
843 puts(buf);
844 return retval;
845}
846
847// int __cdecl putchar(int);
848int __cdecl puts(const char *s)

Callers 5

VA_DECLFunction · 0.85
printfFunction · 0.85
errorFunction · 0.85
plineFunction · 0.85
impossibleFunction · 0.85

Calls 1

putsFunction · 0.85

Tested by

no test coverage detected