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

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