shithub: scc

ref: 829833bcfdb0f780537568a12041c83533401220
dir: /src/libc/ctype/isblank.c/

View raw version
#include <ctype.h>

int
isblank(int c)
{
	return (c == ' ') || (c == '\t');
}