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

int isspace(int c) {
  return c == ' ' || (unsigned)c - '\t' < 5;
}