toascii.c 112 B

1234567
  1. #include <ctype.h>
  2. /* nonsense function that should NEVER be used! */
  3. int toascii(int c)
  4. {
  5. return c & 0x7f;
  6. }