Home
last modified time | relevance | path

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

/DragonStub/apps/lib/
H A Dstring.c20 #define TOLOWER(x) ((x) | 0x20) macro
25 if (TOLOWER(cp[1]) == 'x' && isxdigit(cp[2])) in simple_guess_base()
61 if (base == 16 && cp[0] == '0' && TOLOWER(cp[1]) == 'x') in simple_strtoull()
67 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()