Files
my-os-project2/kernel/std/string.c
2025-08-13 23:28:25 +02:00

11 lines
201 B
C

#include <stddef.h>
#include "hal/hal.h"
void *memset(void *p, int c, size_t n) {
return hal_memset(p,c,n);
}
void *memcpy(void *dst, const void *src, size_t n) {
return hal_memcpy(dst,src,n);
}