home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
isspace.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
9 lines
/*
** return 'true' if c is a white-space character
*/
isspace(c) int c; {
/* first check gives quick exit in most cases */
return(c<=' ' && (c==' ' || (c<=13 && c>=9)));
}