** empty the buffer space into the stack */
| 426 | ** empty the buffer space into the stack |
| 427 | */ |
| 428 | static void clearbuff (BuffFS *buff) { |
| 429 | pushstr(buff, buff->space, buff->blen); /* push buffer contents */ |
| 430 | buff->blen = 0; /* space now is empty */ |
| 431 | } |
| 432 | |
| 433 | |
| 434 | /* |
no test coverage detected