shithub: scc

ref: 1cb0492560101400338e96c476202522a91873d4
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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