| 117 | } |
| 118 | |
| 119 | IOINLINE void Stack_clearTop(Stack *self) { |
| 120 | Stack_popMark(self); |
| 121 | Stack_pushMark(self); |
| 122 | // self->top = self->items + self->lastMark; |
| 123 | } |
| 124 | |
| 125 | IOINLINE void *Stack_top(const Stack *self) { return *(self->top); } |
| 126 |
no test coverage detected