view src/lib-imap/imap-bodystructure.h @ 6410:e4eb71ae8e96 HEAD

Changed .h ifdef/defines to use <NAME>_H format.
author Timo Sirainen <tss@iki.fi>
date Sun, 16 Sep 2007 11:31:27 +0300
parents 8d9234a26a3f
children 81806d402514
line wrap: on
line source

#ifndef IMAP_BODYSTRUCTURE_H
#define IMAP_BODYSTRUCTURE_H

struct message_part;
struct message_header_line;

/* Parse a single header. Note that this modifies part->context. */
void imap_bodystructure_parse_header(pool_t pool, struct message_part *part,
				     struct message_header_line *hdr);

/* Returns TRUE if BODYSTRUCTURE is
   ("text" "plain" ("charset" "us-ascii") NIL NIL "7bit" n n NIL NIL NIL) */
bool imap_bodystructure_is_plain_7bit(struct message_part *part);

void imap_bodystructure_write(const struct message_part *part,
			      string_t *dest, bool extended);

/* Return BODY part from BODYSTRUCTURE */
bool imap_body_parse_from_bodystructure(const char *bodystructure,
					string_t *dest);

#endif