Qsmtp  0.30dev
mime_chars.h
Go to the documentation of this file.
1 
4 #ifndef MIMECHARS_H
5 #define MIMECHARS_H
6 
16 #define TSPECIAL(a) (((a) == '(') || ((a) == ')') || ((a) == '<') || ((a) == '>') || ((a) == '@') || \
17  ((a) == ',') || ((a) == ';') || ((a) == ':') || ((a) == '\\') || ((a) == '"') || \
18  ((a) == '/') || ((a) == '[') || ((a) == ']') || ((a) == '?') || ((a) == '='))
19 
26 #define WSPACE(a) (((a) == ' ') || ((a) == '\t') || ((a) == '\r') || ((a) == '\n'))
27 
28 #endif