#ifndef _B_TREE_H_ #define _B_TREE_H_ #include "../object.h" #include #include struct b_tree { struct b_dsref t_base; struct b_tree_node *t_root; }; #endif