shithub: scc

ref: 42f557fa3b371ba28d45169f4c1371f482d43b6b
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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