musl-tcc/src/ctype/toascii.c

8 lines
112 B
C

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