home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gawk-2.15.6-src.tgz
/
tar.out
/
fsf
/
gawk
/
missing
/
memcpy.c
< prev
next >
Wrap
Text File
|
1996-09-28
|
261b
|
19 lines
/*
* memcpy --- copy strings.
*
* We supply this routine for those systems that aren't standard yet.
*/
char *
memcpy (dest, src, l)
register char *dest, *src;
register int l;
{
register char *ret = dest;
while (l--)
*dest++ = *src++;
return ret;
}