shithub: scc

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

View raw version

#include <ctype.h>

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