home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / ISASCII.C < prev    next >
Text File  |  1987-10-04  |  256b  |  8 lines

  1. /*
  2. ** return 'true' if c is an ASCII character (0-127)
  3. */
  4. isascii(c) char *c; {
  5.   /* c is a simulated unsigned integer */
  6.   return (c <= 127);
  7.   }
  8.