home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / isprint.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  128 b   |  8 lines

  1. /*
  2. ** return 'true' if c is a printable character
  3. ** (32-126)
  4. */
  5. isprint(c) int c; {
  6.   return (c>=32 && c<=126);
  7.   }
  8.