xref: /original-bsd/usr.bin/pascal/libpc/TEOF.c (revision 55330032)
1 /* Copyright (c) 1979 Regents of the University of California */
2 
3 static char sccsid[] = "@(#)TEOF.c 1.1 10/30/80";
4 
5 #include "h00vars.h"
6 #include "h01errs.h"
7 
8 TEOF(filep)
9 
10 	register struct iorec	*filep;
11 {
12 	if (filep->fblk >= MAXFILES || _actfile[filep->fblk] != filep) {
13 		ERROR(ENOFILE, 0);
14 		return;
15 	}
16 	if (filep->funit & EOFF)
17 		return TRUE;
18 	IOSYNC(filep);
19 	if (filep->funit & EOFF)
20 		return TRUE;
21 	return FALSE;
22 }
23