BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 11f4683b13d097219efe4887820b96d54ffee02c / string / memcpy.c

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)
#include <stddef.h>

/* Copy one region of memory to another */
void *
memcpy(void *dest, void *src, size_t n)
{
	unsigned char *a = (unsigned char *) dest,
	              *b = (unsigned char *) src;
	while (n-- > 0)
		*a++ = *b++;
	return dest;
}