3 #include "kerncompat.h"
4 #include "radix-tree.h"
7 #include "print-tree.h"
9 int main(int ac
, char **av
) {
10 struct ctree_super_block super
;
11 struct ctree_root
*root
;
13 root
= open_ctree("dbfile", &super
);
14 printf("root tree\n");
15 print_tree(root
, root
->node
);
17 print_tree(root
->extent_root
, root
->extent_root
->node
);