shithub: scc

ref: 3bd6fb1ee5670440da8932a75dfe2ad114c30967
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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