mirror of
https://github.com/AuroraWright/SafeA9LHInstaller.git
synced 2025-06-26 05:32:45 +00:00
9 lines
105 B
C
9 lines
105 B
C
|
/*
|
||
|
* memory.h
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
void memcpy(void *dest, const void *src, u32 size);
|