| 998 | } |
| 999 | |
| 1000 | static void printer_pop_depth(struct printer *printer) { |
| 1001 | if (printer->status == DemangleOk) { |
| 1002 | parser_pop_depth(&printer->parser); |
| 1003 | } |
| 1004 | } |
| 1005 | |
| 1006 | static NODISCARD overflow_status printer_print_buf(struct printer *printer, const char *start, size_t len) { |
| 1007 | if (printer->out == NULL) { |
no test coverage detected