BarryServer : Git

All the code for all my projects
// BarryServer : Git / Nucleus / blob / 7cbafe825afe9474334ec1f587aab8d82eb8bc64 / 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;
}