git subrepo pull --force deps/lightrec
[pcsx_rearmed.git] / deps / libretro-common / crt / include / 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