MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / gui_console_printf

Function gui_console_printf

core/os/os-emscripten.c:65–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65void gui_console_printf(const char *fmt, ...) {
66 va_list ap;
67 va_start(ap, fmt);
68 vfprintf(stderr, fmt, ap);
69 fflush(stderr);
70 va_end(ap);
71}
72
73void gui_console_err_printf(const char *fmt, ...) {
74 va_list ap;

Callers 15

rtc_resetFunction · 0.50
init_rtcFunction · 0.50
keypad_resetFunction · 0.50
init_keypadFunction · 0.50
init_spiFunction · 0.50
sha256_resetFunction · 0.50
init_sha256Function · 0.50
gpt_resetFunction · 0.50
init_gptFunction · 0.50
init_uartFunction · 0.50
init_intrptFunction · 0.50
emu_send_variablesFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected