Blame view

mail/size.c 1.28 KB
1
/* GNU Mailutils -- a suite of utilities for electronic mail
2 3
   Copyright (C) 1999, 2001, 2005, 2007, 2009, 2010 Free Software
   Foundation, Inc.
4

5
   GNU Mailutils is free software; you can redistribute it and/or modify
6
   it under the terms of the GNU General Public License as published by
7
   the Free Software Foundation; either version 3, or (at your option)
8 9
   any later version.

10
   GNU Mailutils is distributed in the hope that it will be useful,
11 12 13 14 15
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
16
   along with GNU Mailutils.  If not, see <http://www.gnu.org/licenses/>. */
17 18 19 20 21 22 23

#include "mail.h"

/*
 * si[ze] [msglist]
 */

24
static int
25
size0 (msgset_t *mspec, mu_message_t msg, void *data)
26 27 28
{
  size_t size = 0, lines = 0;

29 30
  mu_message_size (msg, &size);
  mu_message_lines (msg, &lines);
31
  
32
  mu_printf ("%c%2lu %3lu/%-5lu\n",
33 34 35 36
		    is_current_message (mspec->msg_part[0]) ? '>' : ' ',
		    (unsigned long) mspec->msg_part[0],
		    (unsigned long) lines,
		    (unsigned long) size);
37 38 39
  return 0;
}

40 41 42
int
mail_size (int argc, char **argv)
{
43
  return util_foreach_msg (argc, argv, MSG_ALL, size0, NULL);
44
}
45 46