shithub: scc

ref: 92f9a64740292aba5d19f9562ab63d3f7645e491
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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