home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISCNTRL.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  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.