Home
last modified time | relevance | path

Searched refs:lwip_tolower (Results 1 – 2 of 2) sorted by relevance

/third_party/lwip/src/include/lwip/
Darch.h225 #define lwip_tolower(c) (lwip_isupper(c) ? (c) - 'A' + 'a' : c) macro
234 #define lwip_tolower(c) tolower((unsigned char)(c)) macro
/third_party/lwip/src/core/
Ddns.c708 if (lwip_tolower((*query)) != lwip_tolower((u8_t)c)) { in dns_compare_name()