diff options
Diffstat (limited to 'src/libui_sdl/libui/unix/text.c')
-rw-r--r-- | src/libui_sdl/libui/unix/text.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libui_sdl/libui/unix/text.c b/src/libui_sdl/libui/unix/text.c new file mode 100644 index 0000000..ad92738 --- /dev/null +++ b/src/libui_sdl/libui/unix/text.c @@ -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); +} |