shithub: scc

ref: 715f312b3c3a3faa943e7a8c3905bbc768d89d89
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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