Add a memcpy utility to libc

This commit is contained in:
Drew Galbraith 2023-06-12 19:13:16 -07:00
parent c35cef65fe
commit f907c189bb
3 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,5 @@
#pragma once
#include "stddef.h"
void* memcpy(void* dest, const void* src, size_t count);