64c0e347e110f7aeebc7b8a2e763b7830b922917
[silc.git] / apps / irssi / src / fe-text / utf8.h
1 #ifndef __UTF8_H
2 #define __UTF8_H
3
4 /* Returns -2 = invalid, -1 = need more data, otherwise unichar. */
5 unichar get_utf8_char(const unsigned char **ptr, int len);
6
7 /* Returns length of UTF8 string */
8 int strlen_utf8(const char *str);
9
10 /* UTF-8 -> unichar string. The NUL is copied as well. */
11 void utf8_to_utf16(const char *str, unichar *out);
12
13 /* unichar -> UTF-8 string. outbuf must be at least 6 chars long.
14    Returns outbuf string length. */
15 int utf16_char_to_utf8(unichar c, char *outbuf);
16
17 /* unichar -> UTF-8 string. The NUL is copied as well.
18    Make sure out is at least 6 x length of str. */
19 void utf16_to_utf8(const unichar *str, char *out);
20
21 /* Returns width for character (0-2). */
22 int utf8_width(unichar c);
23
24 #endif