shithub: scc

ref: 22e63b76976fd232a2e40e30845d35eca6325b02
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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