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

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