1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-21 22:20:59 +00:00

10 lines
161 B
C
Raw Normal View History

#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