isspace.c 85 B

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