fxlibc/src/libc/string/memset.c

14 lines
203 B
C

#include <string.h>
#include <stdint.h>
#ifndef __SUPPORT_ARCH_SH
void *memset(void *s, int c, size_t n)
{
while ((int)--n >= 0)
((uint8_t *) s)[n] = c;
return (s);
}
#endif /*__SUPPORT_ARCH_SH*/