#ifndef IMAP_BODYSTRUCTURE_H
#define IMAP_BODYSTRUCTURE_H
struct message_part;
struct message_header_line;
struct imap_arg;
/* Write a BODY/BODYSTRUCTURE from given message_part. The message_part->data
field must be set. part->body_size.virtual_size and .lines are also used
for writing it. */
/* Parse BODYSTRUCTURE and save the contents to message_part->data for each
message tree node. If the parts argument points to NULL, the message_part
tree is created from the BODYSTRUCTURE. Otherwise, existing tree is used.
Returns 0 if ok, -1 if bodystructure wasn't valid. */
/* Same as imap_bodystructure_parse_full(), but read the input from imap_args
instead of a string. */
/* Parse BODYSTRUCTURE and save the contents to message_part->data for each
message tree node. The parts argument must point to an existing message_part
tree. Returns 0 if ok, -1 if bodystructure wasn't valid. */
/* Get BODY part from BODYSTRUCTURE and write it to dest.
Returns 0 if ok, -1 if bodystructure wasn't valid. */
int imap_body_parse_from_bodystructure(const char *bodystructure,
#endif