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

4 lines
111 B
C

int isspace(int c) {
return (c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == '\v' || c == ' ');
}