home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / ISSPACE.C < prev    next >
Text File  |  1987-10-04  |  256b  |  9 lines

  1. /*
  2. ** return 'true' if c is a white-space character
  3. */
  4. isspace(c) int c; {
  5.   /* first check gives quick exit in most cases */
  6.   return(c<=' ' && (c==' ' || (c<=13 && c>=9)));
  7.   }
  8.  
  9.