| 296 | } buffered_t; |
| 297 | |
| 298 | static void mi_buffered_flush(buffered_t* buf) { |
| 299 | buf->buf[buf->used] = 0; |
| 300 | _mi_fputs(buf->out, buf->arg, NULL, buf->buf); |
| 301 | buf->used = 0; |
| 302 | } |
| 303 | |
| 304 | static void mi_cdecl mi_buffered_out(const char* msg, void* arg) { |
| 305 | buffered_t* buf = (buffered_t*)arg; |
no test coverage detected