BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / ad9b6af63f1fdfcf3556c9b2fc670f72cdc60ab4 / string / memset.c

// Related

OrionLibC

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

/* Fill a region of memory with specified byte */
void *
memset(void *dest, int byte, size_t len)
{
	unsigned char *a = dest;
	if (len > 0)  {
		while (len-- > 0)
			*a++ = byte;
	}
	return dest;
}