1idna_to_unicode_lzlz(3) libidn idna_to_unicode_lzlz(3)
2
3
4
6 idna_to_unicode_lzlz - convert domain name label to Unicode
7
9 #include <idna.h>
10
11 int idna_to_unicode_lzlz(const char * input, char ** output, int
12 flags);
13
15 const char * input
16 zero-terminated string encoded in the current locale's
17 character set.
18
19 char ** output
20 pointer to newly allocated output string encoded in the
21 current locale's character set.
22
23 int flags an Idna_flags value, e.g., IDNA_ALLOW_UNASSIGNED or
24 IDNA_USE_STD3_ASCII_RULES.
25
27 Convert possibly ACE encoded domain name in the locale's character set
28 into a string encoded in the current locale's character set. The
29 domain name may contain several labels, separated by dots. The output
30 buffer must be deallocated by the caller.
31
33 Returns IDNA_SUCCESS on success, or error code.
34
36 Report bugs to <bug-libidn@gnu.org>.
37
39 Copyright © 2002, 2003, 2004, 2005, 2006 Simon Josefsson.
40 Permission is granted to make and distribute verbatim copies of this
41 manual provided the copyright notice and this permission notice are
42 preserved on all copies.
43
45 The full documentation for libidn is maintained as a Texinfo manual.
46 If the info and libidn programs are properly installed at your site,
47 the command
48
49 info libidn
50
51 should give you access to the complete manual.
52
53
54
55libidn 0.6.8 idna_to_unicode_lzlz(3)