Commit b54042f7 b54042f73b14c5a556aac953d95b1650a8fec6ad by Frederic Gobry

added declaration of address_dup()

1 parent a0c20947
2002-11-14 Frederic Gobry <frederic.gobry@smartdata.ch>
* include/mailutils/address.h: added declaration of address_dup.
2002-11-14 Sergey Poznyakoff
* sieve/lex-sieve.lex: Removed
......
......@@ -28,6 +28,8 @@ extern int address_create __P ((address_t *, const char *));
extern int address_createv __P ((address_t *, const char *v[], size_t));
extern void address_destroy __P ((address_t *));
extern address_t address_dup __P ((address_t src));
/* Set FROM to null, after adding its addresses to TO. */
extern int address_concatenate __P ((address_t to, address_t* from));
......