aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/memset.c
blob: 1d9bec1b7c1fe242e9581cb95f6c8c29027f454e (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stddef.h>

void *memset(void *dest, char val, size_t count)
{
	char *temp = (char *)dest;
	for (; count != 0; count--)
		*temp++ = val;
	return dest;
}