toaruos/libc/ctype/isprint.c
2018-05-04 12:17:32 +09:00

6 lines
80 B
C

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