I'm trying very hard to grow a brain please help send thoughts
@fleckenstein @Vivisector @MiaWinter
int omemcpy(void *src, void *dest, size_t len) {
if (dest > src && dest < src + len) return -1;
for (size_t i = 0; i < len; i++) {
src[i] = dest[i];
}
}
should be a thing on libc probably
@Vivisector @[email protected] @MiaWinter Vivian contributed by emotionally supporting us
Meow