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

  1. /*
  2. ** return ASCII equivalent of c
  3. */
  4. toascii(c) int c; {
  5.   return (c);
  6.   }
  7.