NeoMutt  2025-12-11-435-g4ac674
Teaching an old dog new tricks
DOXYGEN
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
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:770
void rfc2047_encode(char **pd, const char *specials, int col, const struct Slist *charsets)
RFC-2047-encode a string.
Definition rfc2047.c:632
void rfc2047_decode_envelope(struct Envelope *env)
Decode the fields of an Envelope.
Definition rfc2047.c:836
void rfc2047_decode(char **pd)
Decode any RFC2047-encoded header fields.
Definition rfc2047.c:665
void rfc2047_decode_addrlist(struct AddressList *al)
Decode any RFC2047 headers in an Address list.
Definition rfc2047.c:805
void rfc2047_encode_envelope(struct Envelope *env)
Encode the fields of an Envelope.
Definition rfc2047.c:861
The header of an Email.
Definition envelope.h:57
String list.
Definition slist.h:37