home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / lambda / soundpot / p / sclib2.lbr / ISCNTRL.CZ / ISCNTRL.C
Encoding:
Text File  |  1993-10-25  |  256 b   |  9 lines

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