home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 221_01 / isspace.c < prev    next >
Text File  |  1979-12-31  |  256b  |  8 lines

  1. #include stdio.h
  2. /*
  3. **  check if space, new line or tab
  4. **  return 1 if true else 0
  5. */
  6. isspace(c) char c; {
  7.   return((c==' ') || (c=='\t') || (c=='\n'));
  8.   }