shithub: scc

ref: 044ed044112af8996f280664833682a4f437016f
dir: /src/libc/ctype/isblank.c/

View raw version
#include <ctype.h>

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