mirror of
https://github.com/ApacheThunder/SCKILL.git
synced 2025-06-18 11:05:50 -04:00
21 lines
523 B
C
21 lines
523 B
C
#ifndef FIND_H
|
|
#define FIND_H
|
|
|
|
#include <gba.h>
|
|
|
|
// #ifdef __cplusplus
|
|
// extern "C" {
|
|
// #endif
|
|
|
|
// COMMON
|
|
//u8* memsearch(const u8* start, u32 dataSize, const u8* find, u32 findSize);
|
|
u32* memsearch32(const u32* start, u32 dataSize, const u32* find, u32 findSize, bool forward);
|
|
u16* memsearch16(const u16* start, u32 dataSize, const u16* find, u32 findSize, bool forward);
|
|
u8* memsearch8(const u8* start, u32 dataSize, const u8* find, u32 findSize, bool forward);
|
|
|
|
// #ifdef __cplusplus
|
|
// }
|
|
// #endif
|
|
|
|
#endif // FIND_H
|