MCPcopy Create free account
hub / github.com/eembc/coremark / ee_printf

Function ee_printf

barebones/ee_printf.c:596–613  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

594}
595
596int ee_printf(const char *fmt, ...)
597{
598 char buf[256],*p;
599 va_list args;
600 int n=0;
601
602 va_start(args, fmt);
603 ee_vsprintf(buf, fmt, args);
604 va_end(args);
605 p=buf;
606 while (*p) {
607 uart_send_char(*p);
608 n++;
609 p++;
610 }
611
612 return n;
613}
614

Callers 15

core_bench_stateFunction · 0.85
core_state.cFile · 0.85
core_init_stateFunction · 0.85
core_bench_listFunction · 0.85
core_list_initFunction · 0.85
mainFunction · 0.85
printmatFunction · 0.85
printmatCFunction · 0.85
check_data_typesFunction · 0.85
portable_initFunction · 0.85
core_start_parallelFunction · 0.85
core_stop_parallelFunction · 0.85

Calls 2

ee_vsprintfFunction · 0.85
uart_send_charFunction · 0.85

Tested by

no test coverage detected