toaruos/libc/ctype/isspace.c

4 lines
111 B
C
Raw Normal View History

2018-05-04 06:17:32 +03:00
int isspace(int c) {
return (c == '\f' || c == '\n' || c == '\r' || c == '\t' || c == '\v' || c == ' ');
}