* Fetch the current state of the top of the stack. */
| 91 | * Fetch the current state of the top of the stack. |
| 92 | */ |
| 93 | ifState |
| 94 | conditional_stack_peek(ConditionalStack cstack) |
| 95 | { |
| 96 | if (conditional_stack_empty(cstack)) |
| 97 | return IFSTATE_NONE; |
| 98 | return cstack->head->if_state; |
| 99 | } |
| 100 | |
| 101 | /* |
| 102 | * Change the state of the topmost branch. |
no test coverage detected