Searched refs:tohex (Results 1 – 1 of 1) sorted by relevance
5653 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro5654 *p++ = (tohex((u_char)val[0]) << 4) | in get_string()5655 tohex((u_char)val[1]); in get_string()5656 #undef tohex in get_string()