home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / p / sclib2.lbr / ISSPACE.CZ / ISSPACE.C
Encoding:
Text File  |  1993-10-25  |  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.