#include #include #include typedef char DATA; struct node { DATA d; struct node *left; struct node *right; }; typedef struct node NODE; typedef NODE *BTREE; #include "fct_proto.h" /* function prototypes */