Show a tree, as outlined in the comment above. */
| 2678 | |
| 2679 | /* Show a tree, as outlined in the comment above. */ |
| 2680 | void raxShow(rax *rax) { |
| 2681 | raxRecursiveShow(0,0,rax->head); |
| 2682 | putchar('\n'); |
| 2683 | } |
| 2684 | |
| 2685 | /* Used by debugnode() macro to show info about a given node. */ |
| 2686 | void raxDebugShowNode(const char *msg, raxNode *n) { |
nothing calls this directly
no test coverage detected