RetroArch
mem_util.h
Go to the documentation of this file.
1 #ifndef __MEM_UTIL__
2 #define __MEM_UTIL__
3 
4 #include <stddef.h>
5 #include <string.h>
6 
7 #include <boolean.h>
8 
9 #include <retro_common_api.h>
10 
12 
13 char *strcpy_alloc(const char *sourceStr);
14 char *strcpy_alloc_force(const char *sourceStr);
15 void strcat_alloc(char ** destStr_p, const char *appendStr);
16 
18 
19 #endif
#define RETRO_BEGIN_DECLS
Definition: retro_common_api.h:41
void strcat_alloc(char **destStr_p, const char *appendStr)
Definition: mem_util.c:29
#define RETRO_END_DECLS
Definition: retro_common_api.h:42
char * strcpy_alloc_force(const char *sourceStr)
Definition: mem_util.c:21
RETRO_BEGIN_DECLS char * strcpy_alloc(const char *sourceStr)
Definition: mem_util.c:5