shithub: scc

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

View raw version

#include <ctype.h>

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