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

Function gui_console_err_printf

core/os/os-emscripten.c:73–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73void gui_console_err_printf(const char *fmt, ...) {
74 va_list ap;
75 va_start(ap, fmt);
76 vfprintf(stderr, fmt, ap);
77 fflush(stderr);
78 va_end(ap);
79}
80
81FILE *fopen_utf8(const char *filename, const char *mode) {
82 return fopen(filename, mode);

Callers 9

emu_send_variablesFunction · 0.50
emu_receive_variableFunction · 0.50
lcd_writeFunction · 0.50
mem_write_cpuFunction · 0.50
emu_loadFunction · 0.50
cpu_write_outFunction · 0.50
report_resetFunction · 0.50
dusb_detectFunction · 0.50
dusb_transitionFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected