Pop an item from the stack, the function returns NULL if there are no * items to pop. */
| 129 | /* Pop an item from the stack, the function returns NULL if there are no |
| 130 | * items to pop. */ |
| 131 | static inline void *raxStackPop(raxStack *ts) { |
| 132 | if (ts->items == 0) return NULL; |
| 133 | ts->items--; |
| 134 | return ts->stack[ts->items]; |
| 135 | } |
| 136 | |
| 137 | /* Return the stack item at the top of the stack without actually consuming |
| 138 | * it. */ |
no outgoing calls
no test coverage detected