home *** CD-ROM | disk | FTP | other *** search
- typedef int *TREE; /* dummy typedef for a tree */
-
- int delete (TREE**, LEAF*, int(*)() );
- LEAF *insert (TREE**, LEAF*, int(*)() );
- LEAF *find (TREE* , LEAF*, int(*)() );
-
- void tprint (TREE* , int(*)(), FILE* );
-
- LEAF *talloc (int );
- void tfree (LEAF* );
- void freeall (TREE** );
-