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

int isprint(int c) {
  return c > 0x20 && 0x7F != c;
}