mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-08-05 20:49:14 -06:00
another UI attempt, I guess.
sorry.
This commit is contained in:
12
src/libui_sdl/libui/unix/text.c
Normal file
12
src/libui_sdl/libui/unix/text.c
Normal file
@ -0,0 +1,12 @@
|
||||
// 9 april 2015
|
||||
#include "uipriv_unix.h"
|
||||
|
||||
char *uiUnixStrdupText(const char *t)
|
||||
{
|
||||
return g_strdup(t);
|
||||
}
|
||||
|
||||
void uiFreeText(char *t)
|
||||
{
|
||||
g_free(t);
|
||||
}
|
Reference in New Issue
Block a user