148117Sbostic /*- 2*62213Sbostic * Copyright (c) 1980, 1993 3*62213Sbostic * The Regents of the University of California. All rights reserved. 422222Sdist * 548117Sbostic * %sccs.include.redist.c% 648117Sbostic * 7*62213Sbostic * @(#)iorec.h 8.1 (Berkeley) 06/06/93 822222Sdist */ 9735Speter 10735Speter #include <stdio.h> 11735Speter #define NAMSIZ 76 12735Speter 13735Speter struct iorec { 14735Speter char *fileptr; /* ptr to file window */ 15735Speter long lcount; /* number of lines printed */ 16735Speter long llimit; /* maximum number of text lines */ 17735Speter FILE *fbuf; /* FILE ptr */ 18735Speter struct iorec *fchain; /* chain to next file */ 19735Speter long *flev; /* ptr to associated file variable */ 20735Speter char *pfname; /* ptr to name of file */ 21735Speter long funit; /* file status flags */ 22735Speter long size; /* size of elements in the file */ 23735Speter char fname[NAMSIZ]; /* name of associated UNIX file */ 24735Speter char buf[BUFSIZ]; /* I/O buffer */ 25735Speter char window[1]; /* file window element */ 26735Speter }; 27