home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / ISGRAPH.C < prev    next >
Text File  |  1987-10-04  |  128b  |  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.