]> git.sur5r.net Git - i3/i3/blob - i3bar/include/ucs2_to_utf8.h
Merge branch 'fix-floating-pos'
[i3/i3] / i3bar / include / ucs2_to_utf8.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  * ucs2_to_utf8.c: Converts between UCS-2 and UTF-8, both of which are used in
8  *                 different contexts in X11.
9  */
10 #ifndef _UCS2_TO_UTF8
11 #define _UCS2_TO_UTF8
12
13 char *convert_utf8_to_ucs2(char *input, int *real_strlen);
14
15 #endif