#include <limits.h>
#include <stdarg.h>
#include <signal.h>
+/* On OS X 10.5.x, wide char functions are inlined by default breaking
+ * --without-wc-funcs compilation
+ */
+#ifdef __APPLE_CC__
+#define _DONT_USE_CTYPE_INLINE_
+#endif
#ifdef HAVE_WCHAR_H
# include <wchar.h>
#endif
OPT_COPY,
OPT_DELETE,
OPT_FORWEDIT,
+ OPT_FCCATTACH,
OPT_INCLUDE,
OPT_MFUPTO,
OPT_MIMEFWD,
OPTENCODEFROM,
OPTENVFROM,
OPTFASTREPLY,
- OPTFCCATTACH,
OPTFCCCLEAR,
OPTFOLLOWUPTO,
OPTFORCENAME,
OPTHIDETHREADSUBJECT,
OPTHIDETOPLIMITED,
OPTHIDETOPMISSING,
+ OPTHONORDISP,
OPTIGNORELWS,
OPTIGNORELISTREPLYTO,
#ifdef USE_IMAP
OPTSSLV3,
OPTTLSV1,
OPTSSLFORCETLS,
+ OPTSSLVERIFYDATES,
+ OPTSSLVERIFYHOST,
#endif /* defined(USE_SSL) */
OPTIMPLICITAUTOVIEW,
OPTINCLUDEONLYFIRST,
/* add an element to a list */
LIST *mutt_add_list (LIST *, const char *);
LIST *mutt_add_list_n (LIST*, const void *, size_t);
+LIST *mutt_find_list (LIST *, const char *);
void mutt_init (int, LIST *);
unsigned int alladdr : 1;
unsigned int stringmatch : 1;
unsigned int groupmatch : 1;
+ unsigned int ign_case : 1; /* ignore case for local stringmatch searches */
int min;
int max;
struct pattern_t *next;