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

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