BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / b33d632d85a31b49ca4a764fe3b644a60459387b / lib / mem.c

// Related

Nucleus

Barry Initial commit c629653 (3 years, 3 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;
}