aboutsummaryrefslogtreecommitdiff
#include <ctype.h>

/* nonsense function that should NEVER be used! */
int toascii(int c)
{
	return c & 0x7f;
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif