From 8ba55bae99f5b65a681463d04b878ecf5db460bd Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Wed, 13 Jul 2016 15:56:50 +0200 Subject: blaze822_priv.h: macro cleanup --- blaze822_priv.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'blaze822_priv.h') diff --git a/blaze822_priv.h b/blaze822_priv.h index dfd8895..5276ff7 100644 --- a/blaze822_priv.h +++ b/blaze822_priv.h @@ -6,4 +6,8 @@ struct message { char *bodychunk; }; +// WSP = SP / HTAB #define iswsp(c) (((c) == ' ' || (c) == '\t')) + +// ASCII lowercase without alpha check (wrong for "@[\]^_") +#define lc(c) ((c) | 0x20) -- cgit 1.4.1