MCPcopy Create free account
hub / github.com/apache/nuttx / vprintf

Function vprintf

libs/libc/stdio/lib_vprintf.c:37–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 ****************************************************************************/
36
37int vprintf(FAR const IPTR char *fmt, va_list ap)
38{
39#ifdef CONFIG_FILE_STREAM
40 return vfprintf(stdout, fmt, ap);
41#else
42 return vdprintf(STDOUT_FILENO, fmt, ap);
43#endif
44}

Callers 3

host_printfFunction · 0.85
debugFunction · 0.85
printconsoleFunction · 0.85

Calls 2

vfprintfFunction · 0.85
vdprintfFunction · 0.85

Tested by

no test coverage detected