Searched refs:lwip_tolower (Results 1 – 2 of 2) sorted by relevance
225 #define lwip_tolower(c) (lwip_isupper(c) ? (c) - 'A' + 'a' : c) macro234 #define lwip_tolower(c) tolower((unsigned char)(c)) macro
708 if (lwip_tolower((*query)) != lwip_tolower((u8_t)c)) { in dns_compare_name()