Return the stack item at the top of the stack without actually consuming * it. */
| 137 | /* Return the stack item at the top of the stack without actually consuming |
| 138 | * it. */ |
| 139 | static inline void *raxStackPeek(raxStack *ts) { |
| 140 | if (ts->items == 0) return NULL; |
| 141 | return ts->stack[ts->items-1]; |
| 142 | } |
| 143 | |
| 144 | /* Free the stack in case we used heap allocation. */ |
| 145 | static inline void raxStackFree(raxStack *ts) { |