documentation: core2/ba/physics
This commit is contained in:
@@ -1,6 +1,19 @@
|
||||
#ifndef __MEM_H__
|
||||
#define __MEM_H__
|
||||
|
||||
/**
|
||||
* copy memory area
|
||||
*/
|
||||
void memcpy(void * dst, void *src, int size);
|
||||
void func_80254630(void * dst, void *src, int size); //memcopy_fast
|
||||
|
||||
/**
|
||||
* copy an array of wide_characters
|
||||
*/
|
||||
void wmemcpy(void * dst, void *src, int size);
|
||||
|
||||
|
||||
/**
|
||||
* copy memory area
|
||||
*/
|
||||
void memmove(u8* dst, u8* src, s32 n);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user