diff mcabber/src/utils.h @ 469:a926523d2392

Use UTF8 to handle resources and room nicknames
author Mikael Berthe <mikael@lilotux.net>
date Sat, 01 Oct 2005 23:17:05 +0200
parents dfd9c62b3a39
children 05c0e55c4bb1
line wrap: on
line diff
--- a/mcabber/src/utils.h	Sat Oct 01 18:53:14 2005 +0200
+++ b/mcabber/src/utils.h	Sat Oct 01 23:17:05 2005 +0200
@@ -1,6 +1,9 @@
 #ifndef __UTILS_H__
 #define __UTILS_H__ 1
 
+#define to_utf8(s)   ((s) ? g_locale_to_utf8((s),   -1, NULL,NULL,NULL) : NULL)
+#define from_utf8(s) ((s) ? g_locale_from_utf8((s), -1, NULL,NULL,NULL) : NULL)
+
 void ut_InitDebug(unsigned int level, const char *file);
 void ut_WriteLog(unsigned int flag, const char *data);