home *** CD-ROM | disk | FTP | other *** search
- /*llist.h -- include file for generic list library
-
- ************* Copyright 1985 by Vermont Creative Software **************
-
- DATE: April 2, 1987
- VERSION: v4.12
-
- */
-
- /*structure for a "generic" linked list, which contains only prior and next */
- /*node pointers and a pointer to a char string. The char string can be */
- /* cast to any desired type to contain non-character information */
-
- typedef struct generic_list
- {
- struct generic_list *p_ndp,
- *n_ndp;
- char *infop; /*pointer to list data */
- } NODE, *NODEPTR;
-
- #define next_nd(ndp) ((ndp)->n_ndp) /*next node macro */
- #define prev_nd(ndp) ((ndp)->p_ndp) /*previous node macro */
- #define first_nd(headp) ((headp)->n_ndp) /*first node macro */
- #define last_nd(headp) ((headp)->p_ndp) /*last node macro */
-
- #define END_NUM 9999 /*last node number */