home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / jove / part02 / rec.h < prev   
Encoding:
C/C++ Source or Header  |  1987-02-02  |  699 b   |  21 lines

  1. /************************************************************************
  2.  * This program is Copyright (C) 1986 by Jonathan Payne.  JOVE is       *
  3.  * 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. };
  14.  
  15. struct rec_entry {
  16.     char    r_bname[128],
  17.         r_fname[128];
  18.     int    r_nlines;
  19. };
  20.  
  21.