aboutsummaryrefslogtreecommitdiff
path: root/src/libui_sdl/libui/unix/text.c
blob: ad92738d4a1f5e527fa869228d2ee161ddf3312d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 9 april 2015
#include "uipriv_unix.h"

char *uiUnixStrdupText(const char *t)
{
	return g_strdup(t);
}

void uiFreeText(char *t)
{
	g_free(t);
}