NeoMutt  2024-04-25-92-gf10c0f
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
rfc2047.h
Go to the documentation of this file.
1
24#ifndef MUTT_EMAIL_RFC2047_H
25#define MUTT_EMAIL_RFC2047_H
26
27struct AddressList;
28struct Envelope;
29struct Slist;
30
31void rfc2047_decode(char **pd);
32void rfc2047_encode(char **pd, const char *specials, int col, const struct Slist *charsets);
33
34void rfc2047_decode_addrlist(struct AddressList *al);
35void rfc2047_encode_addrlist(struct AddressList *al, const char *tag);
36void rfc2047_decode_envelope(struct Envelope *env);
37void rfc2047_encode_envelope(struct Envelope *env);
38
39#endif /* MUTT_EMAIL_RFC2047_H */
void rfc2047_encode_addrlist(struct AddressList *al, const char *tag)
Encode any RFC2047 headers, where required, in an Address list.
Definition: rfc2047.c:766
void rfc2047_encode(char **pd, const char *specials, int col, const struct Slist *charsets)
RFC-2047-encode a string.
Definition: rfc2047.c:628
void rfc2047_decode_envelope(struct Envelope *env)
Decode the fields of an Envelope.
Definition: rfc2047.c:832
void rfc2047_decode(char **pd)
Decode any RFC2047-encoded header fields.
Definition: rfc2047.c:661
void rfc2047_decode_addrlist(struct AddressList *al)
Decode any RFC2047 headers in an Address list.
Definition: rfc2047.c:801
void rfc2047_encode_envelope(struct Envelope *env)
Encode the fields of an Envelope.
Definition: rfc2047.c:857
The header of an Email.
Definition: envelope.h:57
String list.
Definition: slist.h:37