home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
266.lha
/
RunBack_v4.0
/
runback_src
/
aztec.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-07-10
|
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);
}