Home
last modified time | relevance | path

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

/minix/sbin/ifconfig/
H A Dutil.c116 #define tohex(x) (isdigit(x) ? (x) - '0' : tolower(x) - 'a' + 10) in get_string() macro
117 *p++ = (tohex((u_char)val[0]) << 4) | in get_string()
118 tohex((u_char)val[1]); in get_string()
119 #undef tohex in get_string()
/minix/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_format_tar.c230 static int tohex(int c);
2390 int digit1 = tohex(s[1]); in url_decode()
2391 int digit2 = tohex(s[2]); in url_decode()
2408 tohex(int c) in tohex() function