Show a tree, as outlined in the comment above. */
| 1885 | |
| 1886 | /* Show a tree, as outlined in the comment above. */ |
| 1887 | void raxShow(rax *rax) { |
| 1888 | raxRecursiveShow(0,0,rax->head); |
| 1889 | putchar('\n'); |
| 1890 | } |
| 1891 | |
| 1892 | /* Used by debugnode() macro to show info about a given node. */ |
| 1893 | void raxDebugShowNode(const char *msg, raxNode *n) { |
nothing calls this directly
no test coverage detected