home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / new / dev / c / dice / include / lists.h < prev    next >
C/C++ Source or Header  |  1994-02-01  |  350b  |  25 lines

  1.  
  2. /*
  3.  *  LISTS.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef LISTS_H
  9. #define LISTS_H
  10.  
  11. #ifndef EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14. #ifndef EXEC_LISTS_H
  15. #include <exec/lists.h>
  16. #endif
  17.  
  18. extern void *GetHead(void *);
  19. extern void *GetTail(void *);
  20. extern void *GetSucc(void *);
  21. extern void *GetPred(void *);
  22.  
  23. #endif
  24.  
  25.