
#include "TreeElement.h"

struct node
 { TreeElementType elt;
   struct node *left, *right;
 };
typedef struct node Node;

typedef Node *Tree;

/* Tree Type. */

