shithub: scc

ref: 6bebff844a6aa4f95675dc7beae9ff24d06464b0
dir: /src/libc/ctype/isblank.c/

View raw version
#include <ctype.h>

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