summaryrefslogtreecommitdiff
path: root/examples/addr.c
diff options
context:
space:
mode:
authorWojciech Polak <polak@gnu.org>2004-01-21 13:08:14 +0000
committerWojciech Polak <polak@gnu.org>2004-01-21 13:08:14 +0000
commit801152df4886327e5eba960cdd0d0dd84c8487a6 (patch)
tree2e3206b4f54eb3d6b0e30a3c58de6b9105faec18 /examples/addr.c
parenta315776cd755cb4ed0da9c8a9ff803bddf09a618 (diff)
downloadmailutils-801152df4886327e5eba960cdd0d0dd84c8487a6.tar.gz
mailutils-801152df4886327e5eba960cdd0d0dd84c8487a6.tar.bz2
Cosmetics
Diffstat (limited to 'examples/addr.c')
-rw-r--r--examples/addr.c28
1 files changed, 6 insertions, 22 deletions
diff --git a/examples/addr.c b/examples/addr.c
index bef435ed4..8c42d1126 100644
--- a/examples/addr.c
+++ b/examples/addr.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -16,8 +16,8 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <stdio.h>
-#include <errno.h>
#include <string.h>
+#include <errno.h>
#include <mailutils/address.h>
#include <mailutils/errno.h>
@@ -35,9 +35,7 @@ parse (const char *str)
address_t address = NULL;
mu_set_user_email_domain ("localhost");
-
status = address_create (&address, str);
-
address_get_count (address, &pcount);
if (status)
@@ -56,40 +54,33 @@ parse (const char *str)
int isgroup;
address_is_group (address, no, &isgroup);
-
printf ("%lu ", (unsigned long) no);
if (isgroup)
{
address_get_personal (address, no, buf, sizeof (buf), &got);
-
printf ("group <%s>\n", buf);
}
else
{
address_get_email (address, no, buf, sizeof (buf), 0);
-
printf ("email <%s>\n", buf);
}
address_get_personal (address, no, buf, sizeof (buf), &got);
-
if (got && !isgroup)
printf (" personal <%s>\n", buf);
address_get_comments (address, no, buf, sizeof (buf), &got);
-
if (got)
printf (" comments <%s>\n", buf);
address_get_local_part (address, no, buf, sizeof (buf), &got);
-
if (got)
{
printf (" local-part <%s>", buf);
address_get_domain (address, no, buf, sizeof (buf), &got);
-
if (got)
printf (" domain <%s>", buf);
@@ -97,14 +88,12 @@ parse (const char *str)
}
address_get_route (address, no, buf, sizeof (buf), &got);
-
if (got)
printf (" route <%s>\n", buf);
}
address_destroy (&address);
printf ("\n");
-
return 0;
}
@@ -128,19 +117,14 @@ main (int argc, const char *argv[])
argc = 1;
if (!argv[argc])
- {
- return parseinput ();
- }
+ return parseinput ();
+
for (; argv[argc]; argc++)
{
if (strcmp (argv[argc], "-") == 0)
- {
- parseinput ();
- }
+ parseinput ();
else
- {
- parse (argv[argc]);
- }
+ parse (argv[argc]);
}
return 0;

Return to:

Send suggestions and report system problems to the System administrator.