mto
ptr = (unsigned char *) &sccb->msg.mdb.mto;
for (count = sizeof(*mto); offset < len; count++) {
mto = (struct mto *) ptr;
memset(mto, 0, sizeof(*mto));
mto->length = count;
mto->type = 4;
mto->line_type_flags = LNTPFLGS_ENDTEXT;
} while ((offset < len) && (ptr + sizeof(*mto) <= end));
struct mto *mto;
mto = &mdb->mto;
mto->length = sizeof(struct mto);
mto->type = 4; /* message text object */
mto->line_type_flags = LNTPFLGS_ENDTEXT; /* end text */
buffer->current_line = (char *) (mto + 1);
msg->mdb.mto.length += buffer->current_length;
struct mto *mto;
struct mto mto;
#define VIFM_COPY(mfrom,mto) ((mto)=(mfrom))