mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 23:35:23 -04:00
589cc12296
* wip * bunch of MSL_C files thanks to pikmin2 decomp for their work * format / asm * progress * fix * fix remove-asm to work with C files * init / start
17 lines
237 B
C
17 lines
237 B
C
#ifndef MSL_COMMON_SRC_MEM_H
|
|
#define MSL_COMMON_SRC_MEM_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int memcmp(const void*, const void*, size_t);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* MSL_COMMON_SRC_MEM_H */
|