mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-03 05:15:53 +00:00
15 lines
233 B
C
15 lines
233 B
C
#ifndef _HECL_WINSUPPORT_H_
|
|
#define _HECL_WINSUPPORT_H_
|
|
|
|
#if __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void* memmem(const void *haystack, size_t hlen, const void *needle, size_t nlen);
|
|
|
|
#if __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _HECL_WINSUPPORT_H_
|