home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / xview / genial / include / llist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-14  |  261 b   |  14 lines

  1. /*
  2.  * llist.h --  definitions for linked-list manipulation routines provided by
  3.  *             arch/base/common.c
  4.  *
  5.  */
  6.  
  7. typedef struct lltype {
  8.   struct lltype *next, *prev;
  9. } llist;
  10.  
  11. extern list_add(), list_del(), llist_depth();
  12.  
  13. extern llist *llist_tail();
  14.