home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CPROTOS.ZIP / LI.H < prev    next >
Text File  |  1991-02-19  |  384b  |  21 lines

  1.  
  2.  
  3. typedef struct _li {
  4.   /*  Declaration Specifiers */
  5.   TRnode *decl_spec;
  6.   /*  Delcaration of function.  */
  7.   TRnode *decl;
  8.   /*  Declaration of parameters.  */
  9.   TRnode *decl_list;
  10.   
  11.   TRnode *list_decl_spec;
  12.   TRnode *list_decl;
  13.   TRnode *list_decl_list;
  14.  
  15.   char *comment;
  16.   struct _li *next;
  17. } LInode;
  18.  
  19. extern LInode *li_head;
  20. extern LInode *li_tail;
  21.