"bad route in <>", "bad address in <>", "bad address spec",
};
+/**
+ * rfc822_new_address - Create a new Address
+ * @retval ptr Newly allocated Address
+ *
+ * Free the result with free_address() or rfc822_free_address()
+ */
+struct Address *rfc822_new_address(void)
+{
+ return mutt_mem_calloc(1, sizeof(struct Address));
+}
+
/**
* free_address - Free a single Address
* @param a Address to free
ERR_BAD_ADDR_SPEC
};
+struct Address *rfc822_new_address(void);
void rfc822_free_address(struct Address **p);
void rfc822_qualify(struct Address *addr, const char *host);
struct Address *rfc822_parse_adrlist(struct Address *top, const char *s);
#define rfc822_error(x) RFC822Errors[x]
-/**
- * rfc822_new_address - Create a new Address
- * @retval ptr Newly allocated Address
- *
- * Free the result with free_address() or rfc822_free_address()
- */
-static inline struct Address *rfc822_new_address(void)
-{
- return mutt_mem_calloc(1, sizeof(struct Address));
-}
-
#endif /* _MUTT_ADDRESS_H */
#include <unistd.h>
#include "mutt/mutt.h"
#include "mutt.h"
+#include "address.h"
#include "alias.h"
#include "body.h"
#include "buffy.h"
#include "pager.h"
#include "parameter.h"
#include "protos.h"
-#include "address.h"
#include "sort.h"
#ifdef USE_IMAP
#include "imap/imap.h"
#include "mutt/mutt.h"
#include "conn/conn.h"
#include "mutt.h"
+#include "address.h"
#include "alias.h"
#include "attach.h"
#include "body.h"
#include "opcodes.h"
#include "options.h"
#include "protos.h"
-#include "address.h"
#include "sort.h"
#ifdef MIXMASTER
#include "remailer.h"
#include <sys/stat.h>
#include "mutt/mutt.h"
#include "mutt.h"
+#include "address.h"
#include "alias.h"
#include "body.h"
#include "context.h"
#include "mutt_idna.h"
#include "options.h"
#include "protos.h"
-#include "address.h"
/*
* SLcurses_waddnstr() can't take a "const char *", so this is only
#include "mutt/mutt.h"
#include "mutt.h"
#include "mutt_lua.h"
+#include "address.h"
#include "globals.h"
#include "mailbox.h"
#include "mbtable.h"
#include "mutt_options.h"
#include "options.h"
#include "protos.h"
-#include "address.h"
static int handle_panic(lua_State *l)
{
#include <time.h>
#include "mutt/mutt.h"
#include "mutt.h"
+#include "address.h"
#include "body.h"
#include "charset.h"
#include "envelope.h"
#include "protos.h"
#include "rfc2047.h"
#include "rfc2231.h"
-#include "address.h"
#include "url.h"
struct Address;
#include "mutt/mutt.h"
#include "conn/conn.h"
#include "mutt.h"
+#include "address.h"
#include "globals.h"
#include "mutt_account.h"
#include "mutt_socket.h"
#include "options.h"
#include "pop.h"
#include "protos.h"
-#include "address.h"
#ifdef USE_SASL
#include <sasl/sasl.h>
#include <sasl/saslutil.h>
#include <string.h>
#include "mutt/mutt.h"
#include "mutt.h"
+#include "address.h"
#include "alias.h"
#include "attach.h"
#include "body.h"
#include "mutt_idna.h"
#include "options.h"
#include "protos.h"
-#include "address.h"
#include "state.h"
/**
#include "mutt/mutt.h"
#include "mutt.h"
#include "url.h"
+#include "address.h"
#include "envelope.h"
#include "globals.h"
#include "mime.h"
#include "protos.h"
#include "rfc2047.h"
-#include "address.h"
static const struct Mapping UrlMap[] = {
{ "file", U_FILE }, { "imap", U_IMAP }, { "imaps", U_IMAPS },