/************************************************************* * File: lib/isspace.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */ /** isspace(c) returns 1 if c == tab newline or space */ isspace(c) int c; { switch (c) { case ' ' : case '\t': case '\n': case '\r': case '\f': case '\v': return(1); } return(0); }