/*********************************************************** * Name : VIDSKP * * Usage : vidskp(c) * * Inputs : c points to video string to skip * * Returns : c pointing to character after string * * Date Written : 86 May 10 **********************************************************/ char *vidskp(c) char *c; { while(*c) { if(*c == '\\') c++; c++; } return(c+1); } /********************* End Of Function ********************/