home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / enterprs / cpm / utils / s / smc21lib.lzh / ISGRAPH.C < prev    next >
Encoding:
Text File  |  1993-03-25  |  256 b   |  14 lines

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