** empty the buffer space into the stack */
| 406 | ** empty the buffer space into the stack |
| 407 | */ |
| 408 | static void clearbuff (BuffFS *buff) { |
| 409 | pushstr(buff, buff->space, buff->blen); /* push buffer contents */ |
| 410 | buff->blen = 0; /* space now is empty */ |
| 411 | } |
| 412 | |
| 413 | |
| 414 | /* |
no test coverage detected