message-address.h revision 5ce2084ada06ade9f44fc2914c34658e9a842dc1
#ifndef __MESSAGE_ADDRESS_H
#define __MESSAGE_ADDRESS_H
/* group: ... ; will be stored like:
{name = "group", NULL, NULL, NULL}, ..., {NULL, NULL, NULL, NULL}
*/
struct message_address {
struct message_address *next;
};
/* data and size are passed directly to message_tokenize_init(), so (size_t)-1
can be given if data is \0 terminated. If there's more than max_addresses,
the rest are skipped. Setting max_addresses to 0 disables this. */
struct message_address *
unsigned int max_addresses);
#endif