about summary refs log tree commit diff
path: root/blaze822_priv.h
blob: 1da4d96925048fadf00dfcf0606eabfe4ba6b1c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)