const char *key;
const char *pref;
}
-PreferredMIMENames[] =
+
+// clang-format off
+PreferredMIMENames[] =
{
{ "ansi_x3.4-1968", "us-ascii" },
{ "iso-ir-6", "us-ascii" },
{ NULL, NULL }
};
+// clang-format on
#ifdef HAVE_LANGINFO_CODESET
# include <langinfo.h>
* Helper macros.
*/
#define digitp(p) (*(p) >= '0' && *(p) <= '9')
+
+// clang-format off
#define hexdigitp(a) (digitp (a) \
|| (*(a) >= 'A' && *(a) <= 'F') \
|| (*(a) >= 'a' && *(a) <= 'f'))
#define xtoi_1(p) (*(p) <= '9'? (*(p)- '0'): \
*(p) <= 'F'? (*(p)-'A'+10):(*(p)-'a'+10))
+// clang-format on
+
#define xtoi_2(p) ((xtoi_1(p) * 16) + xtoi_1((p)+1))
#define PKA_NOTATION_NAME "pka-address@gnupg.org"
# include "doc/makedoc-defs.h"
#endif
+// clang-format off
const struct binding_t OpGeneric[] = { /* map: generic */
/*
** <para>
{ NULL, 0, NULL }
};
#endif /* MIXMASTER */
+// clang-format on
typedef int (*handler_t) (BODY *, STATE *);
+// clang-format off
const int Index_hex[128] = {
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
};
+// clang-format on
static void print_part_line (STATE *s, BODY *b, int n)
{
#include "charset.h"
#include "imap_private.h"
+// clang-format off
static const int Index_64[128] = {
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1
};
+// clang-format on
static const char B64Chars[64] = {
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',