Ejemplo n.º 1
0
Archivo: recvcmd.c Proyecto: 0xAX/muttx
void mutt_attach_forward (FILE * fp, struct header *hdr,
			  ATTACHPTR ** idx, short idxlen, struct body * cur)
{
	short nattach;


	if (check_all_msg (idx, idxlen, cur, 0) == 0)
		attach_forward_msgs (fp, hdr, idx, idxlen, cur);
	else
	{
		nattach = count_tagged (idx, idxlen);
		attach_forward_bodies (fp, hdr, idx, idxlen, cur, nattach);
	}
}
Ejemplo n.º 2
0
void mutt_attach_forward (FILE * fp, HEADER * hdr,
                          ATTACHPTR ** idx, short idxlen, BODY * cur,
                          int flags)
{
  short nattach;


  if (check_all_msg (idx, idxlen, cur, 0) == 0)
    attach_forward_msgs (fp, hdr, idx, idxlen, cur, flags);
  else {
    nattach = count_tagged (idx, idxlen);
    attach_forward_bodies (fp, hdr, idx, idxlen, cur, nattach, flags);
  }
}