musl-tcc/src/ctype/toascii.c
2022-03-20 16:48:53 +08:00

8 lines
112 B
C

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