RetroArch/runahead/mem_util.h

20 lines
334 B
C
Raw Normal View History

2018-03-28 19:22:07 +00:00
#ifndef __MEM_UTIL__
#define __MEM_UTIL__
#include <stddef.h>
#include <string.h>
#include <boolean.h>
2018-04-08 18:25:43 +00:00
#include <retro_common_api.h>
2018-03-28 19:22:07 +00:00
RETRO_BEGIN_DECLS
char *strcpy_alloc(const char *sourceStr);
char *strcpy_alloc_force(const char *sourceStr);
void strcat_alloc(char ** destStr_p, const char *appendStr);
RETRO_END_DECLS
#endif