home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
small_c
/
sc88.arc
/
ISSPACE.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1987-10-04
|
256 b
|
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)));
}