home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / icon / dos / src / icont / lfile.h < prev    next >
C/C++ Source or Header  |  1992-02-10  |  258b  |  11 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.