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