toaruos/libc/ctype/isprint.c
2018-10-11 15:30:38 +09:00

6 lines
78 B
C

#include <ctype.h>
int isprint(int c) {
return isgraph(c) || c == ' ';
}