/* * i s b l a n k . c */ /*)LIBRARY */ #ifdef DOCUMENTATION title isblan Test For a Blank Character index Test for a blank character synopsis int isblank(c) char c; /* character to be tested */ description isblank returns TRUE if chacacter is a space of tab, and FALSE if the character is otherwise. bugs author Machiavelli Systems #endif isblank (chr) char chr; { return (chr ==' ' || chr == '\t'); }