From: Olivier Fredj <olivier@fredj.org>
[apps/madmutt.git] / mutt_idna.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 2003 Thomas Roessler <roessler@does-not-exist.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #ifndef _MUTT_IDNA_H
11 # define _MUTT_IDNA_H
12
13 #include "rfc822.h"
14 #include "charset.h"
15
16 #ifdef HAVE_LIBIDN
17 #include <idna.h>
18 #endif
19
20 #define MI_MAY_BE_IRREVERSIBLE          (1 << 0)
21
22 int mutt_idna_to_local (const char *, char **, int);
23 int mutt_local_to_idna (const char *, char **);
24
25 int mutt_addrlist_to_idna (ADDRESS *, char **);
26 int mutt_addrlist_to_local (ADDRESS *);
27
28 void mutt_env_to_local (ENVELOPE *);
29 int mutt_env_to_idna (ENVELOPE *, char **, char **);
30
31 const char *mutt_addr_for_display (ADDRESS * a);
32
33 /* Work around incompatibilities in the libidn API */
34
35 #ifdef HAVE_LIBIDN
36 # if (!defined(HAVE_IDNA_TO_ASCII_8Z) && defined(HAVE_IDNA_TO_ASCII_FROM_UTF8))
37 #  define idna_to_ascii_8z(a,b,c) idna_to_ascii_from_utf8(a,b,(c)&1,((c)&2)?1:0)
38 # endif
39 # if (!defined(HAVE_IDNA_TO_ASCII_LZ) && defined(HAVE_IDNA_TO_ASCII_FROM_LOCALE))
40 #  define idna_to_ascii_lz(a,b,c) idna_to_ascii_from_locale(a,b,(c)&1,((c)&2)?1:0)
41 # endif
42 # if (!defined(HAVE_IDNA_TO_UNICODE_8Z8Z) && defined(HAVE_IDNA_TO_UNICODE_UTF8_FROM_UTF8))
43 #  define idna_to_unicode_8z8z(a,b,c) idna_to_unicode_utf8_from_utf8(a,b,(c)&1,((c)&2)?1:0)
44 # endif
45 #endif
46
47 #endif