NeoMutt  2023-11-03-85-g512e01
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
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:1842
bool mutt_can_decode(struct Body *b)
Will decoding the attachment produce any output.
Definition: handler.c:1858
int mutt_body_handler(struct Body *b, struct State *state)
Handler for the Body of an email.
Definition: handler.c:1624
void mutt_decode_base64(struct State *state, size_t len, bool istext, iconv_t cd)
Decode base64-encoded text.
Definition: handler.c:1525
void mutt_decode_attachment(struct Body *b, struct State *state)
Decode an email's attachment.
Definition: handler.c:1898
The body of an email.
Definition: body.h:36
Keep track when processing files.
Definition: state.h:47