shithub: scc

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

View raw version
#include <ctype.h>

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