Searched defs:IS_LWS (Results 1 - 2 of 2) sorted by relevance

/dovecot/src/lib-otp/
H A Dotp-parse.c19 #define IS_LWS(c) ((c) == ' ' || (c) == '\t') macro
23 while (*data != '\0' && IS_LWS(*data))
56 } else if (!IS_LWS(c)) {
98 if (IS_LWS(c))
114 } else if (IS_LWS(c)) {
155 while ((*p != 0) && !IS_LWS(*p)) p++;
165 if (str_parse_int(s, &state->seq, &p) < 0 || !IS_LWS(*p))
/dovecot/src/auth/
H A Dmech-digest-md5.c20 #define IS_LWS(c) ((c) == ' ' || (c) == '\t') macro
233 while (IS_LWS(*p)) p++;
248 while (p > *data && IS_LWS(p[-1]))
254 while (IS_LWS(*p)) p++;
261 while (IS_LWS(p[-1]))

Completed in 11 milliseconds