home *** CD-ROM | disk | FTP | other *** search
/ ftp.cs.arizona.edu / ftp.cs.arizona.edu.tar / ftp.cs.arizona.edu / icon / historic / v941.tgz / icon.v941src.tar / icon.v941src / src / icont / lfile.h < prev    next >
C/C++ Source or Header  |  2000-07-29  |  468b  |  22 lines

  1. /*
  2.  * A linked list of files named by link declarations is maintained using
  3.  *  lfile structures.
  4.  */
  5. struct lfile {
  6.    char *lf_name;        /* name of the file */
  7.    struct lfile *lf_link;    /* pointer to next file */
  8.    };
  9.  
  10. extern struct lfile *lfiles;
  11.  
  12.  
  13. /*
  14.  * "Invocable" declarations are recorded in a list of invkl structs.
  15.  */
  16. struct invkl {
  17.    char *iv_name;        /* name of global */
  18.    struct invkl *iv_link;    /* link to next entry */
  19.    };
  20.  
  21. extern struct invkl *invkls;
  22.