home *** CD-ROM | disk | FTP | other *** search
- /* 1.0 07-06-84 */
- /************************************************************************
- * Robert C. Tausworthe *
- * Jet Propulsion Laboratory *
- * Pasadena, CA 91009 1984 *
- ************************************************************************/
-
- #include "defs.h"
- #include "stdtyp.h"
- #include "ctype.h"
-
- /************************************************************************/
- BOOL
- isspace(c) /* returns true if c is space, tab, cr, newline,
- or formfeed. */
- /*----------------------------------------------------------------------*/
- int c;
- {
- return (ISSPACE(c));
- }