home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISSPACE.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  256 b   |  15 lines

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