Add a memcpy utility to libc
This commit is contained in:
parent
c35cef65fe
commit
f907c189bb
3 changed files with 16 additions and 0 deletions
5
lib/libc/include/string.h
Normal file
5
lib/libc/include/string.h
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#pragma once
|
||||
|
||||
#include "stddef.h"
|
||||
|
||||
void* memcpy(void* dest, const void* src, size_t count);
|
||||
Loading…
Add table
Add a link
Reference in a new issue