#include #include #include "bst.h" int initBST (bst **tree) { *tree = malloc (sizeof(bst)); (*tree)->root = NULL; (*tree)->count = 0; return 0; }