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

int isgraph(int c) {
  return (unsigned)c - 0x21 < 0x5e;
}