mirror of
https://github.com/wiiu-env/haxchi.git
synced 2024-11-17 13:49:17 +01:00
d29e796167
updated main Haxchi to v2.3
8 lines
161 B
C
8 lines
161 B
C
#ifndef _UTILS_H_
|
|
#define _UTILS_H_
|
|
|
|
void* m_memcpy(void *dst, const void *src, unsigned int len);
|
|
void* m_memset(void *dst, int val, unsigned int len);
|
|
|
|
#endif
|