shithub: scc

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

View raw version

#include <ctype.h>

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