RetroArch
string.h
Go to the documentation of this file.
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
GLenum GLsizei len
Definition: glext.h:7389
const GLubyte * c
Definition: glext.h:9812
GLboolean GLboolean GLboolean b
Definition: glext.h:6844
GLenum src
Definition: glext.h:6980
GLenum GLenum dst
Definition: glext.h:6980
void * memset(void *b, int c, size_t len)
Definition: string.c:7
void * memcpy(void *dst, const void *src, size_t len)
Definition: string.c:26