home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / utilities / misc / gadmget1.9.lha / GadMGet1.9 / GadMget1.9.source.lha / tree.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-18  |  253 b   |  20 lines

  1. /* tree.h - declare structures used by tree.c
  2.  * vix 27jun86 [broken out of tree.c]
  3.  */
  4.  
  5.  
  6. #ifndef    _TREE_FLAG
  7. #define    _TREE_FLAG
  8.  
  9.  
  10. typedef    struct    tree_s
  11.     {
  12.         struct    tree_s    *tree_l, *tree_r;
  13.         short        tree_b;
  14.         char        *tree_p;
  15.     }
  16.     tree;
  17.  
  18.  
  19. #endif    _TREE_FLAG
  20.