/*********************************************************** * Name : EREOL * * Usage : ereol() * * Inputs : none. Expects vidptr to point to the ZCPR3 * termcap entry. * * Returns : True if ereol performed else FALSE * * Date Written : 86 May 10 **********************************************************/ ereol() { extern char *vidptr; char *c; char delay; c = vidptr; if(*c <= ' ') /* return FALSE if no terminal */ return(0); c += 22; delay = *c++; c = vidskp(c); /* skip CL string */ c = vidskp(c); /* skip CM string */ if(!*c) /* return FALSE if no ereol string */ return(0); vidout(delay,c); return(1); /* return TRUE when line erased to end */ } /********************* End Of Function ********************/