}
-#define MAX(a,b) (((a) >= (b)) ? (a) : (b))
#define NUMVARS (sizeof (MuttVars)/sizeof (MuttVars[0]))
#define NUMCOMMANDS (sizeof (Commands)/sizeof (Commands[0]))
/* initial string that starts completion. No telling how much crap
#include <sys/stat.h>
#include <fcntl.h>
-#define MIN(a,b) ((a) < (b) ? (a) : (b))
-#define MAX(a,b) ((a) < (b) ? (b) : (a))
-
BODY *mutt_new_body (void)
{
BODY *p = (BODY *) safe_calloc (1, sizeof (BODY));
char *mutt_gettext (const char *message)
{
- return message;
+ return (char *)message;
}
#define dprint(N,X)
#endif
+#undef MAX
+#undef MIN
+#define MAX(a,b) ((a) < (b) ? (b) : (a))
+#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MoreArgs(p) (*p->dptr && *p->dptr != ';' && *p->dptr != '#')
#define DP_C_LDOUBLE 3
#define char_to_int(p) (p - '0')
-#define MAX(p,q) ((p >= q) ? p : q)
static void dopr (char *buffer, size_t maxlen, const char *format, va_list args)
{