home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / toascii.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  128 b   |  7 lines

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