shithub: scc

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

View raw version

#include <ctype.h>

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