home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cslio205.zip / INCLUDE / CSAVL.H < prev    next >
C/C++ Source or Header  |  1997-01-21  |  682b  |  26 lines

  1. /***********************************************************************
  2.  
  3.                       CSDB Library, Free Evaluation Version 2.0.5 
  4.                                        Release: January 22th 1997 
  5.  
  6.        Defining AVL data structure.
  7.  
  8.                                            Copyright(c) 1994-1997 
  9.                                                           ComBits 
  10.                                                   The Netherlands 
  11. ***********************************************************************/
  12.  
  13. #ifndef __CSAVL_H
  14. #define __CSAVL_H
  15.  
  16. #include "csbase.h"
  17. #include "cstypes.h"
  18.  
  19. typedef union
  20. {
  21.   void *p;
  22.   U32   l;
  23. } avl_dat;
  24.  
  25. #endif
  26.