isblank.c (78B)
1 #include <ctype.h> 2 3 int 4 isblank(int c) 5 { 6 return (c == ' ') || (c == '\t'); 7 }