| 71 | } |
| 72 | |
| 73 | void 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 | |
| 81 | FILE *fopen_utf8(const char *filename, const char *mode) { |
| 82 | return fopen(filename, mode); |
no outgoing calls
no test coverage detected