Genesis-Plus-GX/libretro-common/crt/include/string.h
Alberto Fustinoni 6c1487acb0 added all common
2017-06-20 10:27:03 +09:00

11 lines
200 B
C

#ifndef __LIBRETRO_SDK_CRT_STRING_H_
#define __LIBRETRO_SDK_CRT_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