NeoMutt  2023-05-17-56-ga67199
Teaching an old dog new tricks
DOXYGEN
handler.h
Go to the documentation of this file.
1
23#ifndef MUTT_HANDLER_H
24#define MUTT_HANDLER_H
25
26#include <iconv.h>
27#include <stdbool.h>
28
29struct Body;
30struct State;
31
32int mutt_body_handler (struct Body *b, struct State *state);
33bool mutt_can_decode (struct Body *b);
34void mutt_decode_attachment (struct Body *b, struct State *state);
35void mutt_decode_base64 (struct State *state, size_t len, bool istext, iconv_t cd);
36bool mutt_prefer_as_attachment(struct Body *b);
37
38#endif /* MUTT_HANDLER_H */
bool mutt_prefer_as_attachment(struct Body *b)
Do we want this part as an attachment?
Definition: handler.c:1836
bool mutt_can_decode(struct Body *b)
Will decoding the attachment produce any output.
Definition: handler.c:1852
int mutt_body_handler(struct Body *b, struct State *state)
Handler for the Body of an email.
Definition: handler.c:1618
void mutt_decode_base64(struct State *state, size_t len, bool istext, iconv_t cd)
Decode base64-encoded text.
Definition: handler.c:1519
void mutt_decode_attachment(struct Body *b, struct State *state)
Decode an email's attachment.
Definition: handler.c:1892
The body of an email.
Definition: body.h:36
Keep track when processing files.
Definition: state.h:47