NeoMutt
2025-12-11-1039-g550ac6
Teaching an old dog new tricks
DOXYGEN
Toggle main menu visibility
Loading...
Searching...
No Matches
rfc2047.h
Go to the documentation of this file.
1
23
24
#ifndef MUTT_EMAIL_RFC2047_H
25
#define MUTT_EMAIL_RFC2047_H
26
27
struct
AddressList;
28
struct
Envelope
;
29
struct
Slist
;
30
31
void
rfc2047_decode
(
char
**pd);
32
void
rfc2047_encode
(
char
**pd,
const
char
*specials,
int
col,
const
struct
Slist
*charsets);
33
34
void
rfc2047_decode_addrlist
(
struct
AddressList *al);
35
void
rfc2047_encode_addrlist
(
struct
AddressList *al,
const
char
*tag);
36
void
rfc2047_decode_envelope
(
struct
Envelope
*env);
37
void
rfc2047_encode_envelope
(
struct
Envelope
*env);
38
39
#endif
/* MUTT_EMAIL_RFC2047_H */
rfc2047_encode_addrlist
void rfc2047_encode_addrlist(struct AddressList *al, const char *tag)
Encode any RFC2047 headers, where required, in an Address list.
Definition
rfc2047.c:784
rfc2047_encode
void rfc2047_encode(char **pd, const char *specials, int col, const struct Slist *charsets)
RFC-2047-encode a string.
Definition
rfc2047.c:646
rfc2047_decode_envelope
void rfc2047_decode_envelope(struct Envelope *env)
Decode the fields of an Envelope.
Definition
rfc2047.c:850
rfc2047_decode
void rfc2047_decode(char **pd)
Decode any RFC2047-encoded header fields.
Definition
rfc2047.c:679
rfc2047_decode_addrlist
void rfc2047_decode_addrlist(struct AddressList *al)
Decode any RFC2047 headers in an Address list.
Definition
rfc2047.c:819
rfc2047_encode_envelope
void rfc2047_encode_envelope(struct Envelope *env)
Encode the fields of an Envelope.
Definition
rfc2047.c:875
Envelope
The header of an Email.
Definition
envelope.h:57
Slist
String list.
Definition
slist.h:37