shithub: scc

ref: cac66e2141e706818050206cb6d20f246209cf1a
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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