shithub: scc

ref: 446dc0208959152bad0bb3ed1cb5f037d247d805
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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