shithub: scc

ref: 6cd7862223d13fd0897c3fafc213dccf874b7101
dir: /src/libc/ctype/toascii.c/

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

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