shithub: scc

ref: 57fd86ea77bab85e988d003883dc323e2190d6b7
dir: /lib/c/isblank.c/

View raw version
#include <ctype.h>

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