1
0
Fork 0
mirror of https://github.com/Raymo111/i3lock-color.git synced 2024-11-03 04:23:38 -05:00
i3lock-color/ucs2_to_utf8.h
Michael Stapelberg 1dc3fd7bf0 Initial commit of the XCB rewrite of i3lock
Changes:
- Uses XCB instead of Xlib (like i3), thus cleaner/faster code
- Uses cairo to load PNG images (*much* faster than XPM)
2010-07-16 17:35:51 +02:00

8 lines
198 B
C

#ifndef _UCS2_TO_UTF8_H
#define _UCS2_TO_UTF8_H
int convert_ucs_to_utf8(char *input, char *output);
char *convert_utf8_to_ucs2(char *input, int *real_strlen);
void u8_dec(char *s, int *i);
#endif