home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / database / avltree / tree.h < prev   
Encoding:
Text File  |  1986-08-09  |  366 b   |  13 lines

  1. typedef  int   *TREE;                       /* dummy typedef for a tree */
  2.  
  3. int      delete   (TREE**, LEAF*, int(*)() );
  4. LEAF     *insert  (TREE**, LEAF*, int(*)() );
  5. LEAF     *find    (TREE* , LEAF*, int(*)() );
  6.  
  7. void     tprint   (TREE* , int(*)(), FILE* );
  8.  
  9. LEAF     *talloc  (int     );
  10. void     tfree    (LEAF*   );
  11. void     freeall  (TREE**  );
  12.  
  13.