shithub: scc

ref: 884acf9274a44d602d54e3e339c7730a9274c0d7
dir: /src/libc/ctype/toascii.c/

View raw version
#include <ctype.h>
#undef toascii

int
toascii(int c)
{
	return c & 0x7f;
}