home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 163_01 / isspace.c < prev    next >
Text File  |  1988-01-31  |  512b  |  9 lines

  1. /*
  2. ** isspace -- true if argument is ASCII space, tab, carriage return,
  3. **            newline (line feed), or form feed  (ie, "white space")
  4. */
  5. isspace(c) char c; {
  6.   if(c == ' ' || c == '\t' || c == '\r' || c == '\n' || c == '\f') return 1;
  7.   else return 0;
  8.   }
  9.