mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 17:15:06 +01:00
10 lines
161 B
C
10 lines
161 B
C
|
#ifndef STRING_H_
|
||
|
#define STRING_H_
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void *memcpy(void *dst, const void *src, size_t len);
|
||
|
void *memset(void *b, int c, size_t len);
|
||
|
|
||
|
#endif
|