home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d193
/
zc
/
subs.c
< prev
next >
Wrap
Text File
|
1989-03-13
|
341b
|
25 lines
/*
* Replace non-portable assembly assist routines lclr()
* and lcpy() with portable, albeit possibly slightly slower
* versions.
*/
void lclr (ptr, lcount)
long *ptr;
int lcount;
{
while (lcount-- > 0) {
*ptr++ = 0;
}
}
void lcpy (out, in, lcount)
long *out;
long *in;
int lcount;
{
while (lcount-- > 0) {
*out++ = *in++;
}
}