shithub: scc

ref: d9814fd84bcabdda378b83e3d7c97d350e5eb16a
dir: /lib/c/isspace.c/

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

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