NeoMutt  2023-05-17-16-g61469c
Teaching an old dog new tricks
DOXYGEN
mutt_body.h
Go to the documentation of this file.
1
23#ifndef MUTT_MUTT_BODY_H
24#define MUTT_MUTT_BODY_H
25
26#include <stdio.h>
27
28struct Body;
29
30int mutt_body_copy(FILE *fp, struct Body **tgt, struct Body *src);
31
32#endif /* MUTT_MUTT_BODY_H */
int mutt_body_copy(FILE *fp, struct Body **tgt, struct Body *src)
Create a send-mode duplicate from a receive-mode body.
Definition: mutt_body.c:48
The body of an email.
Definition: body.h:36