| 140 | } raxNode; |
| 141 | |
| 142 | typedef struct rax { |
| 143 | raxNode *head; |
| 144 | uint64_t numele; |
| 145 | uint64_t numnodes; |
| 146 | } rax; |
| 147 | |
| 148 | /* Stack data structure used by raxLowWalk() in order to, optionally, return |
| 149 | * a list of parent nodes to the caller. The nodes do not have a "parent" |
nothing calls this directly
no outgoing calls
no test coverage detected