FENIX_libc/ctype/isblank.c

5 lines
76 B
C
Raw Permalink Normal View History

2020-12-13 10:55:41 +00:00
#include <ctype.h>
int isblank(int c) {
return (c == ' ' || c == '\t');
}