home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / LLIST.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-04-01  |  926 b   |  27 lines

  1. /*llist.h -- include file for generic list library
  2.  
  3.     ************* Copyright 1985 by Vermont Creative Software **************
  4.  
  5. DATE:      April 2, 1987
  6. VERSION:  v4.12
  7.  
  8. */
  9.  
  10. /*structure for a "generic" linked list, which contains only prior and next   */
  11. /*node pointers and a pointer to a char string.  The char string can be       */
  12. /* cast to any desired type to contain non-character information          */
  13.  
  14. typedef struct generic_list
  15. {
  16.     struct generic_list *p_ndp,
  17.             *n_ndp;
  18.     char *infop;            /*pointer to list data              */
  19. } NODE, *NODEPTR;
  20.  
  21. #define next_nd(ndp)    ((ndp)->n_ndp)           /*next node macro          */
  22. #define prev_nd(ndp)    ((ndp)->p_ndp)           /*previous node macro          */
  23. #define first_nd(headp) ((headp)->n_ndp)       /*first node macro          */
  24. #define last_nd(headp)    ((headp)->p_ndp)       /*last node macro          */
  25.  
  26. #define END_NUM 9999            /*last node number              */
  27.