mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-07-01 23:43:32 +00:00
16 lines
201 B
C
16 lines
201 B
C
#ifndef _MWCPLUSLIB
|
|
#define _MWCPLUSLIB
|
|
|
|
#include <types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
void* __copy(char* to, char* from, size_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _MWCPLUSLIB
|