musl-tcc/src/ctype/toascii.c

8 lines
112 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <ctype.h>
/* nonsense function that should NEVER be used! */
int toascii(int c)
{
return c & 0x7f;
}