shithub: scc

ref: 5b42385090b777a97827b76840e814f57a859cb8
dir: /lib/c/isblank.c/

View raw version
#include <ctype.h>

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