4.3BSD-UWisc/src/usr.lib/libloc/copy.c

Compare this file to the similar file:
Show the results in this format:

/*
** Just copy (nbytes) raw bytes from src to dest.
*/
copy( dest, src, nbytes )
register char	*dest;
register char	*src;
register int	nbytes;
{
	while( nbytes-- )
		*dest++ = *src++;
}