mblaze/blaze822_priv.h
2016-07-13 16:00:20 +02:00

16 lines
407 B
C

struct message {
char *msg;
char *end;
char *body;
char *bodyend;
char *bodychunk;
};
// WSP = SP / HTAB
#define iswsp(c) (((c) == ' ' || (c) == '\t'))
#define isfws(c) (((unsigned char)(c) == ' ' || (unsigned char)(c) == '\t' || (unsigned char)(c) == '\n' || (unsigned char)(c) == '\r'))
// ASCII lowercase without alpha check (wrong for "@[\]^_")
#define lc(c) ((c) | 0x20)