shithub: scc

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

View raw version
#include <ctype.h>

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