shithub: scc

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

View raw version

#include <ctype.h>

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