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

Function gui_console_err_printf

tests/autotester/autotester_cli.cpp:33–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31 void gui_console_clear() {}
32 void gui_console_printf(const char *format, ...) { (void)format; }
33 void gui_console_err_printf(const char *format, ...) {
34 static char message[512];
35 va_list ap;
36 va_start(ap, format);
37 if (vsnprintf(message, sizeof(message), format, ap) >= 0) {
38 std::cerr << message;
39 }
40 va_end(ap);
41 }
42 asic_rev_t gui_handle_reset(const boot_ver_t* boot_ver, asic_rev_t loaded_rev, asic_rev_t default_rev, bool* python) {
43 (void)boot_ver;
44 (void)loaded_rev;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected