mirror of
https://github.com/fluencelabs/musl
synced 2025-06-15 07:51:42 +00:00
22 lines
472 B
C
22 lines
472 B
C
![]() |
#include <string.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdint.h>
|
||
|
#include <limits.h>
|
||
|
|
||
|
#define SS (sizeof(size_t))
|
||
|
#define ALIGN (sizeof(size_t)-1)
|
||
|
#define ONES ((size_t)-1/UCHAR_MAX)
|
||
|
|
||
|
void *memset(void *dest, int c, size_t n)
|
||
|
{
|
||
|
unsigned char *s = dest;
|
||
|
c = (unsigned char)c;
|
||
|
for (; ((uintptr_t)s & ALIGN) && n; n--) *s++ = c;
|
||
|
if (n) {
|
||
|
size_t *w, k = ONES * c;
|
||
|
for (w = (void *)s; n>=SS; n-=SS, w++) *w = k;
|
||
|
for (s = (void *)w; n; n--, s++) *s = c;
|
||
|
}
|
||
|
return dest;
|
||
|
}
|