| 30 | { |
| 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; |
nothing calls this directly
no outgoing calls
no test coverage detected