xprintf d727b10
|
Debugging for host-based testing of xprintf(), not for embedded use. More...
Functions | |
void | xprintf__debug2hostV (const char *format, va_list ap) |
A routine that prints debugging information to a test environment. |
Debugging for host-based testing of xprintf(), not for embedded use.
void xprintf__debug2hostV | ( | const char * | format, |
va_list | ap | ||
) |
A routine that prints debugging information to a test environment.
Must be implemented by the test rig's environment and print to a suitable stream e.g.:
#include "impl/xprintf-debug.h" void xprintf__debug2hostV(const char *format, va_list ap) { vfprintf(stderr, format, ap)); }
format | a printf() type format |
ap | the va_list for the format |