home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_12 / 9n12033b < prev    next >
Text File  |  1991-10-15  |  290b  |  9 lines

  1. typedef struct node {
  2.     struct node *pfwd;    /* ptr to next node in list */
  3.     struct node *pbwd;    /* ptr to prev node in list */
  4.     struct node *pdupe;    /* ptr to next duplicate node */
  5.     void (*process)(unsigned);    /* function to call */
  6.     unsigned priority;    /* function priority */
  7. } Node;
  8.  
  9.