shithub: scc

ref: 27b4662757e3d9a500b69a96057cef8fdeacca99
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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