shithub: scc

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

View raw version
#include <ctype.h>

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