home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d152
/
runback
/
aztec.c
< prev
next >
Wrap
C/C++ Source or Header
|
1987-06-15
|
199b
|
15 lines
/* HasASpace(s): Return 1 if there is a space in string s.
* Return 0 otherwise.
*/
HasASpace(s)
char *s;
{
char *temp=s;
while (*temp) {
if (*(temp++) == ' ')
return(1);
}
return(0);
}