mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
20db83cd93
move package folders to wii and ngc respectively
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
|