Home
last modified time | relevance | path

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

/Zephyr-Core-3.7.0/subsys/net/lib/http/
Dhttp_parser_url.c111 #define LOWER(c) (unsigned char)(c | 0x20) macro
112 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z')
115 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
Dhttp_parser.c265 #define LOWER(c) (unsigned char)(c | 0x20) macro
266 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z')
269 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
1608 c = LOWER(ch); in parser_execute()
1721 c = LOWER(ch); in parser_execute()