1*48117Sbostic /*- 2*48117Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48117Sbostic * All rights reserved. 422222Sdist * 5*48117Sbostic * %sccs.include.redist.c% 6*48117Sbostic * 7*48117Sbostic * @(#)iorec.h 5.2 (Berkeley) 04/16/91 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