home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / isspace.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  256 b   |  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.