1: /***************************************************************************
2: * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne. JOVE *
3: * is provided to you without charge, and with no warranty. You may give *
4: * away copies of JOVE, including sources, provided that this notice is *
5: * included in all the files. *
6: ***************************************************************************/
7:
8: struct rec_head {
9: int Uid, /* uid of owner */
10: Pid; /* pid of jove process */
11: time_t UpdTime; /* last time this was updated */
12: int Nbuffers; /* number of buffers */
13: disk_line FreePtr; /* position of DFree */
14: };
15:
16: struct rec_entry {
17: char r_bname[128],
18: r_fname[128];
19: int r_nlines,
20: r_dotline, /* so we can really save the context */
21: r_dotchar;
22: };
Defined struct's
Usage of this include