mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 08:59:58 +00:00
20 lines
334 B
C
20 lines
334 B
C
#ifndef __MEM_UTIL__
|
|
#define __MEM_UTIL__
|
|
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
|
|
#include <boolean.h>
|
|
|
|
#include <retro_common_api.h>
|
|
|
|
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
|