/* returns true if chararcter is a blank,tab or newline */ isspace(cc) char cc; { return (cc==' ' || cc=='\t' || cc=='\n'); }