mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
8 lines
138 B
C
8 lines
138 B
C
#ifndef STRING_H_
|
|
#define STRING_H_
|
|
|
|
void * _memcpy(void *dst, const void *src, u32 len);
|
|
void * _memset(void *b, u8 c, u32 len);
|
|
|
|
#endif
|