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

int iscntrl(int c) {
  return (unsigned)c < 0x20 || c == 0x7f;
}