* @param fpout Where to write output
* @param fpin Where to get input
* @param hdr Header of message being copied
- * @param body Structure of message being copied
* @param flags See below
* @param chflags Flags to mutt_copy_header()
*
* @param fpin where to get input
* @param src source mailbox
* @param hdr message being copied
- * @param body structure of message being copied
* @param flags mutt_open_copy_message() flags
* @param chflags mutt_copy_header() flags
* @retval 0 on success
fputc('\n', stderr);
}
-void (*mutt_error)(const char *, ...) = default_error;
-
/**
* default_message - Display an informative message
* @param format printf-like formatting string
fputc('\n', stdout);
}
-void (*mutt_message)(const char *, ...) = default_message;
-
/**
* default_perror - Lookup a standard error message (using errno)
* @param message Prefix message to display
mutt_error("%s: %s (errno = %d)", message, p ? p : _("unknown error"), errno);
}
+void (*mutt_error)(const char *, ...) = default_error;
+void (*mutt_message)(const char *, ...) = default_message;
void (*mutt_perror)(const char *) = default_perror;
* @param s String to match
* @param p Parameter list
* @retval ptr Matching Parameter
- * @reval NULL No match
+ * @retval NULL No match
*/
char *mutt_get_parameter(const char *s, struct Parameter *p)
{