shithub: scc

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

View raw version

#include <ctype.h>

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