25fbfc4926d6d720904f66e1a26c9ce56c17ba7c
[pcsx_rearmed.git] / string.h
1 #ifndef __LIBRETRO_SDK_CRT_STRING_H_
2 #define __LIBRETRO_SDK_CRT_STRING_H_
3
4 #include <stdio.h>
5
6 void *memcpy(void *dst, const void *src, size_t len);
7
8 void *memset(void *b, int c, size_t len);
9
10 #endif