MCPcopy Create free account
hub / github.com/kiibohd/controller / printf_verbose

Function printf_verbose

LoadFile/teensy_loader_cli.c:806–818  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

804/****************************************************************/
805
806int printf_verbose(const char *format, ...)
807{
808 va_list ap;
809 int r;
810
811 va_start(ap, format);
812 if (verbose) {
813 r = vprintf(format, ap);
814 fflush(stdout);
815 return r;
816 }
817 return 0;
818}
819
820void delay(double seconds)
821{

Callers 2

mainFunction · 0.85
init_hid_managerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…