home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / smallc21 / smc21lib.lbr / ISCNTRL.C < prev    next >
Encoding:
Text File  |  1985-04-01  |  256 b   |  13 lines

  1.  
  2. /*
  3. ** Return "true" if c is a control character
  4. ** (0 - 31 or 127)
  5. */
  6. iscntrl(c) char *c; {
  7.   /* c is simulated unsigned integer */
  8.   return ((c <= 31) || (c == 127));
  9.   }
  10.  
  11.  
  12.  
  13.