home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource3 / 163_01 / iscntrl.c < prev    next >
Text File  |  1988-02-01  |  384b  |  8 lines

  1. /*
  2. ** iscntrl -- true if argument is valid ASCII control character
  3. */
  4. iscntrl(c) char c; {
  5.   if(c < ' ' || c  == 127) return 1;
  6.   else return 0;
  7.   }
  8.