GBA-Exploader/arm9/include/find.h
ApacheThunder 8aa7cfdefa Resolved SuperCard save issues ...
* Fixed remaining save issues for most SuperCards.
* Patching system from SCFW implemented for SuperCards. Prepatched roms
no longer required for use with GBA-Exploader for SuperCards!
* Initial EZ Flash Omega/Omega DE support! Note that there are still
save issues right now. DE has partial saves working with just 128KB
saves not working. (so Pokemon games do not hold saves currently)
2024-06-28 15:39:07 -05:00

22 lines
527 B
C

#ifndef FIND_H
#define FIND_H
#include <nds.h>
#ifdef __cplusplus
extern "C" {
#endif
// COMMON
//u8* memsearch(const u8* start, u32 dataSize, const u8* find, u32 findSize);
extern u32* memsearch32(const u32* start, u32 dataSize, const u32* find, u32 findSize, bool forward);
extern u16* memsearch16(const u16* start, u32 dataSize, const u16* find, u32 findSize, bool forward);
extern u8* memsearch8(const u8* start, u32 dataSize, const u8* find, u32 findSize, bool forward);
#ifdef __cplusplus
}
#endif
#endif // FIND_H