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