[go: up one dir, main page]

File: utf8.h

package info (click to toggle)
irssi-text 0.8.4-3.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 6,048 kB
  • ctags: 5,670
  • sloc: ansic: 51,220; sh: 8,913; perl: 1,076; makefile: 1,017
file content (21 lines) | stat: -rw-r--r-- 661 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef __UTF8_H
#define __UTF8_H

/* Returns -2 = invalid, -1 = need more data, otherwise unichar. */
unichar get_utf8_char(const unsigned char **ptr, int len);

/* Returns length of UTF8 string */
int strlen_utf8(const char *str);

/* UTF-8 -> unichar string. The NUL is copied as well. */
void utf8_to_utf16(const char *str, unichar *out);

/* unichar -> UTF-8 string. outbuf must be at least 6 chars long.
   Returns outbuf string length. */
int utf16_char_to_utf8(unichar c, char *outbuf);

/* unichar -> UTF-8 string. The NUL is copied as well.
   Make sure out is at least 6 x length of str. */
void utf16_to_utf8(const unichar *str, char *out);

#endif