Searched refs:hex2nibble (Results 1 – 1 of 1) sorted by relevance
1085 #define hex2nibble(c) (c <= '9' ? c - '0' : toupper(c) - 'A' + 10) macro1090 return (hex2nibble(c[0]) << 4) + hex2nibble(c[1]); in hex2byte()