shithub: scc

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

View raw version

#include <ctype.h>

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