| 270 | } buffered_t; |
| 271 | |
| 272 | static void mi_buffered_flush(buffered_t* buf) { |
| 273 | buf->buf[buf->used] = 0; |
| 274 | _mi_fputs(buf->out, buf->arg, NULL, buf->buf); |
| 275 | buf->used = 0; |
| 276 | } |
| 277 | |
| 278 | static void mi_cdecl mi_buffered_out(const char* msg, void* arg) { |
| 279 | buffered_t* buf = (buffered_t*)arg; |
no test coverage detected