move the text of error messages from ERROR to the functions
[unix-history] / usr / src / usr.bin / pascal / libpc / TEOLN.c
/* Copyright (c) 1979 Regents of the University of California */
static char sccsid[] = "@(#)TEOLN.c 1.3 %G%";
#include "h00vars.h"
bool
TEOLN(filep)
register struct iorec *filep;
{
if (filep->fblk >= MAXFILES || _actfile[filep->fblk] != filep) {
ERROR("Reference to an inactive file\n", 0);
return;
}
IOSYNC(filep);
if (filep->funit & EOLN)
return TRUE;
return FALSE;
}