Home
last modified time | relevance | path

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

/freebsd/contrib/tnftp/src/
H A Dfetch.c276 #define HEXTOINT(x) (x - (isdigit(x) ? '0' : (islower(x) ? 'a' : 'A') - 10)) in url_decode() macro
281 *q++ = HEXTOINT(p[1]) * 16 + HEXTOINT(p[2]); in url_decode()