summaryrefslogtreecommitdiff
path: root/userland/libc/ctype/isblank.c
blob: 488fa88054595a30f06b06a6c50f4589261fb9fc (plain)
1
2
3
4
5
#include <ctype.h>

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