shithub: scc

ref: 0227f08f277216ef979a859e1170aff185205abb
dir: /src/libc/ctype/isblank.c/

View raw version
#include <ctype.h>

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