shithub: scc

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

View raw version
#include <ctype.h>

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