mirror of https://github.com/PrimeDecomp/prime.git
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
|