/*********************************************************** * Name : STNDOUT * * Usage : stndout() * * Inputs : none. Expects vidptr to point to the ZCPR3 * termcap entry. * * Returns : TRUE if in highlight mode else FALSE * * Date Written : 86 May 10 **********************************************************/ stndout() { extern char *vidptr; char *c,delay; c = vidptr; if(*c <= ' ') /* return FALSE if no terminal */ return(0); delay = 0; c += 23; c = vidskp(c); /* skip CL string */ c = vidskp(c); /* skip CM string */ c = vidskp(c); /* skip CE string */ if(!*c) /* return FALSE if no standout string */ return(0); vidout(delay,c); return(1); /* return TRUE when in highlight mode */ } /********************* End Of Function ********************/