ftp.nice.ch/pub/next/unix/text/rtf.N.bsd.tar.gz#/rtf-utilities/tools/gawk-2.14/missing/memcpy.c

This is memcpy.c in view mode; [Download] [Up]

/*
 * 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;
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.