summaryrefslogtreecommitdiff
path: root/examples/addr.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-08-26 14:23:32 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-08-26 14:23:32 +0000
commit6178304b1670d7288d8a37b9165bda5cbc44c180 (patch)
treee17d3bce1e0b2a537937bc331efa240ce382b81e /examples/addr.c
parentef22616eba2aaa4e05079852ac1fa67c4ceeff08 (diff)
downloadmailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.gz
mailutils-6178304b1670d7288d8a37b9165bda5cbc44c180.tar.bz2
Normalize global namespace. Part 1
Diffstat (limited to 'examples/addr.c')
-rw-r--r--examples/addr.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/examples/addr.c b/examples/addr.c
index 072ae796e..65c32d6b4 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, 2004 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000, 2001, 2004, 2005 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
@@ -36,8 +36,8 @@ parse (const char *str)
address_t address = NULL;
mu_set_user_email_domain ("localhost");
- status = address_create (&address, str);
- address_get_count (address, &pcount);
+ status = mu_address_create (&address, str);
+ mu_address_get_count (address, &pcount);
if (status)
{
@@ -54,45 +54,45 @@ parse (const char *str)
size_t got = 0;
int isgroup;
- address_is_group (address, no, &isgroup);
+ mu_address_is_group (address, no, &isgroup);
printf ("%lu ", (unsigned long) no);
if (isgroup)
{
- address_get_personal (address, no, buf, sizeof (buf), &got);
+ mu_address_get_personal (address, no, buf, sizeof (buf), &got);
printf ("group <%s>\n", buf);
}
else
{
- address_get_email (address, no, buf, sizeof (buf), 0);
+ mu_address_get_email (address, no, buf, sizeof (buf), 0);
printf ("email <%s>\n", buf);
}
- address_get_personal (address, no, buf, sizeof (buf), &got);
+ mu_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);
+ mu_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);
+ mu_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);
+ mu_address_get_domain (address, no, buf, sizeof (buf), &got);
if (got)
printf (" domain <%s>", buf);
printf ("\n");
}
- address_get_route (address, no, buf, sizeof (buf), &got);
+ mu_address_get_route (address, no, buf, sizeof (buf), &got);
if (got)
printf (" route <%s>\n", buf);
}
- address_destroy (&address);
+ mu_address_destroy (&address);
printf ("\n");
return 0;

Return to:

Send suggestions and report system problems to the System administrator.