home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 223_01 / isprint.c < prev    next >
Encoding:
Text File  |  1979-12-31  |  256 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.