1: /*
   2:  * A linked list of files named by "link" directives 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: extern struct lfile *lfiles;
  10: extern struct lfile *getlfile();

Defined struct's

lfile defined in line 5; used 28 times

Usage of this include

Last modified: 1984-11-18
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 690
Valid CSS Valid XHTML 1.0 Strict