1: /*************************************************************************
2: * This program is copyright (C) 1985, 1986 by Jonathan Payne. It is *
3: * provided to you without charge for use only on a licensed Unix *
4: * system. You may copy JOVE provided that this notice is included with *
5: * the copy. You may not sell copies of this program or versions *
6: * modified for use on microcomputer systems, unless the copies are *
7: * included with a Unix system distribution and the source is provided. *
8: *************************************************************************/
9:
10: struct rec_head {
11: int Uid, /* Uid of owner. */
12: Pid; /* Pid of jove process. */
13: time_t UpdTime; /* Last time this was updated. */
14: int Nbuffers; /* Number of buffers. */
15: };
16:
17: struct rec_entry {
18: char r_bname[128],
19: r_fname[128];
20: int r_nlines;
21: };
Defined struct's
Usage of this include