Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/subsys/net/lib/http/
Dhttp_parser_url.c115 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f')) macro
343 if (IS_HEX(ch) || ch == ':' || ch == '.') { in http_parse_host_char()
Dhttp_parser.c269 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f')) macro