* destroy stack */
| 27 | * destroy stack |
| 28 | */ |
| 29 | void |
| 30 | conditional_stack_destroy(ConditionalStack cstack) |
| 31 | { |
| 32 | while (conditional_stack_pop(cstack)) |
| 33 | continue; |
| 34 | free(cstack); |
| 35 | } |
| 36 | |
| 37 | /* |
| 38 | * Create a new conditional branch. |
no test coverage detected