toaruos/libc/string/memset.c

11 lines
224 B
C
Raw Normal View History

2018-02-25 08:13:54 +03:00
#include <stddef.h>
void * memset(void * dest, int c, size_t n) {
asm volatile("cld; rep stosb"
: "=c"((int){0})
: "D"(dest), "a"(c), "c"(n)
: "flags", "memory");
return dest;
}