** empty the buffer space into the stack */
| 416 | ** empty the buffer space into the stack |
| 417 | */ |
| 418 | static void clearbuff (BuffFS *buff) { |
| 419 | pushstr(buff, buff->space, buff->blen); /* push buffer contents */ |
| 420 | buff->blen = 0; /* space now is empty */ |
| 421 | } |
| 422 | |
| 423 | |
| 424 | /* |
no test coverage detected