Return the frame at the top of the defragmentation stack, or NULL if there * are no more nodes to visit. */
| 2351 | /* Return the frame at the top of the defragmentation stack, or NULL if there |
| 2352 | * are no more nodes to visit. */ |
| 2353 | static inline raxDefragFrame *raxDefragStackPeek(raxDefragIterator *it) { |
| 2354 | if (it->items == 0) return NULL; |
| 2355 | return &it->stack[it->items-1]; |
| 2356 | } |
| 2357 | |
| 2358 | /* Pop the current frame from the defragmentation stack. */ |
| 2359 | static inline void raxDefragStackPop(raxDefragIterator *it) { |
no outgoing calls
no test coverage detected