shithub: scc

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

View raw version

#include <ctype.h>

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