Vhex-kernel/src/kernel/util/string/memset.c

10 lines
157 B
C

#include <kernel/util/string.h>
//TODO: update me :(
void *memset(void *s, int c, size_t n)
{
while ((int)--n >= 0)
((uint8_t*)s)[n] = c;
return (s);
}