* start of XML output support (WIP)

This commit is contained in:
Dirk-Jan C. Binnema
2011-01-05 22:46:10 +02:00
parent 2303bc4f59
commit 4409b565dc
6 changed files with 87 additions and 7 deletions

View File

@ -368,3 +368,12 @@ mu_str_fullpath_s (const char* path, const char* name)
return buf;
}
char*
mu_str_escape_xml (const gchar* str)
{
if (!str)
return NULL;
return g_markup_escape_text (str, -1);
}