BSD 4_3 development
[unix-history] / usr / contrib / jove / rec.h
CommitLineData
fb51ca13
C
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
10struct 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
17struct rec_entry {
18 char r_bname[128],
19 r_fname[128];
20 int r_nlines;
21};
22