shithub: scc

ref: eee59735a33ca030a5787eec69d494ee143e81dd
dir: /src/libc/ctype/isblank.c/

View raw version
#include <ctype.h>

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