mirror of
https://github.com/AuroraWright/SafeA9LHInstaller.git
synced 2025-06-26 05:32:45 +00:00
13 lines
367 B
C
13 lines
367 B
C
/*
|
|
* memory.h
|
|
*
|
|
* memcpy, memset32 and memcmp adapted from https://github.com/mid-kid/CakesForeveryWan/blob/557a8e8605ab3ee173af6497486e8f22c261d0e2/source/memfuncs.c
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
void memcpy(void *dest, const void *src, u32 size);
|
|
void memset32(void *dest, u32 filler, u32 size);
|
|
int memcmp(const void *buf1, const void *buf2, u32 size); |