home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bootp.zip / ISCNTRL.C < prev    next >
Text File  |  1984-09-28  |  136b  |  10 lines

  1. /*    return true if input character is a a control character
  2. */
  3.  
  4. iscntrl(c)
  5. unsigned char c;
  6. {
  7.  
  8.   return (0177==c || c<=037);
  9. }
  10.