1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-20 05:53:25 +01:00
TegraExplorer/source/tegraexplorer/utils/utils.c

21 lines
460 B
C
Raw Normal View History

2020-03-18 22:58:32 +00:00
#include <string.h>
2020-03-17 23:41:09 +00:00
#include "utils.h"
#include "../common/common.h"
#include "../gfx/menu.h"
#include "../../storage/emummc.h"
2020-03-18 22:58:32 +00:00
#include "../../mem/heap.h"
2020-03-17 23:41:09 +00:00
int utils_mmcMenu(){
int res;
if (emu_cfg.enabled)
return menu_make(utils_mmcChoice, 3, "-- Choose MMC --");
else
return SYSMMC;
2020-03-18 22:58:32 +00:00
}
void utils_copystring(const char *in, char **out){
int len = strlen(in) + 1;
*out = (char *) malloc (len);
strcpy(*out, in);
2020-03-17 23:41:09 +00:00
}