home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bootp.zip / ISSPACE.C < prev    next >
Text File  |  1984-09-28  |  140b  |  10 lines

  1. /*    returns true if chararcter is a blank,tab or newline
  2. */
  3.  
  4. isspace(cc)
  5. char cc;
  6. {
  7.  
  8.   return (cc==' ' || cc=='\t' || cc=='\n');
  9. }
  10.