shithub: scc

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

View raw version

#include <ctype.h>

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