Home
last modified time | relevance | path

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

/freebsd/usr.bin/chat/
H A Dchat.c1348 static char hexchars[] = "0123456789abcdef"; in vfmtmsg() local
1463 OUTCHAR(hexchars[c >> 4]); in vfmtmsg()
1464 OUTCHAR(hexchars[c & 0xf]); in vfmtmsg()
1489 *--str = hexchars[val % base]; in vfmtmsg()
/freebsd/lib/libfetch/
H A Dhttp.c1120 static const char *hexchars = "0123456789abcdef"; variable
1129 Hex[i*2] = hexchars[j]; in CvtHex()
1131 Hex[i*2+1] = hexchars[j]; in CvtHex()