shithub: scc

ref: e15a440b400655c6457fd2486c9636bd53419631
dir: /lib/c/isblank.c/

View raw version

#include <ctype.h>

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