This commit is contained in:
Nishi 2026-03-06 23:18:28 +09:00
commit 178fe4aca7
3 changed files with 36 additions and 29 deletions

View file

@ -57,15 +57,15 @@ int main(int argc, char** argv) {
n = h->pre;
if(n != NULL) {
while(n != NULL) {
// recursive(h, n, INDENT);
// recursive(h, n, INDENT);
n = n->next;
}
}
// if(h->root != NULL) recursive(h, h->root, INDENT);
// if(h->root != NULL) recursive(h, h->root, INDENT);
xl_node_t** r = xl_get_path(h->root, "book.title");
int j;
int j;
for(j = 0; r[j] != NULL; j++) recursive(h, r[j], INDENT);
free(r);
} else {