Home
last modified time | relevance | path

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

/Zephyr-latest/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.c273 #define LOWER(c) (unsigned char)(c | 0x20) macro
274 #define IS_ALPHA(c) (LOWER(c) >= 'a' && LOWER(c) <= 'z')
277 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
1772 c = LOWER(ch); in parser_execute()
1895 c = LOWER(ch); in parser_execute()