shithub: scc

ref: 439629f3f58c21dd056721107e4dadb3b6e0482f
dir: /src/libc/ctype/isspace.c/

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

int
isspace(int c)
{
	return (__ctype+1)[c] & _S;
}