mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-14 10:05:43 +01:00
14 lines
222 B
C
14 lines
222 B
C
|
#ifndef __CLOVER_STRING_H__
|
||
|
#define __CLOVER_STRING_H__
|
||
|
|
||
|
extern "C" {
|
||
|
#include <Library/BaseMemoryLib.h>
|
||
|
}
|
||
|
|
||
|
inline void* memmove(void *dst, const void *src, size_t len)
|
||
|
{
|
||
|
return CopyMem(dst, (void*)(src), len);
|
||
|
}
|
||
|
|
||
|
#endif
|