NeoMutt  2023-03-22-27-g3cb248
Teaching an old dog new tricks
DOXYGEN
body.h
Go to the documentation of this file.
1
23#ifndef MUTT_SEND_BODY_H
24#define MUTT_SEND_BODY_H
25
26#include <stdio.h>
27
28struct Body;
29struct ConfigSubset;
30
31int mutt_write_mime_body(struct Body *a, FILE *fp, struct ConfigSubset *sub);
32
33#endif /* MUTT_SEND_BODY_H */
int mutt_write_mime_body(struct Body *a, FILE *fp, struct ConfigSubset *sub)
Write a MIME part.
Definition: body.c:318
The body of an email.
Definition: body.h:36
A set of inherited config items.
Definition: subset.h:47