quark/src/kernel/lib/memory.h

8 líneas
148 B
C
Original Vista normal Històric

#pragma once
#include <stddef.h>
2022-06-21 00:32:49 +02:00
#include <stdint.h>
2022-07-18 21:28:03 +02:00
void memset(void *ptr, uint8_t val, size_t n);
void memcpy(void *dest, void *src, size_t n);