#ifndef BST_INT_H #define BST_INT_H #include "bst.h" struct node_t; typedef struct node_t { struct node_t *left; struct node_t *right; void *item; } node; static int printRecursiveBST(const bst *, const node *); #endif