Home
last modified time | relevance | path

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

/third_party/lwip/src/include/lwip/
Darch.h226 #define lwip_toupper(c) (lwip_islower(c) ? (c) - 'a' + 'A' : c) macro
235 #define lwip_toupper(c) toupper((unsigned char)(c)) macro
/third_party/lwip/src/apps/netbiosns/
Dnetbiosns.c513 netbiosns_local_name[i] = (char)lwip_toupper(hostname[i]); in netbiosns_set_name()