mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-08-01 18:49:11 -06:00
13 lines
147 B
C
13 lines
147 B
C
// 9 april 2015
|
|
#include "uipriv_unix.h"
|
|
|
|
char *uiUnixStrdupText(const char *t)
|
|
{
|
|
return g_strdup(t);
|
|
}
|
|
|
|
void uiFreeText(char *t)
|
|
{
|
|
g_free(t);
|
|
}
|