summaryrefslogtreecommitdiff
path: root/src/boot/libc/memset.c
blob: 3d7998f932041448a9f66a09aeb5f3cc4cde499a (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "libc/memset.h"

void* memset(void* dst, s32 val, size_t len) {
    u8* d = dst;

    while (len--) {
        *d++ = val;
    }

    return dst;
}