Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dutils.c194 static const char hexchars[] = "0123456789abcdef"; local
373 (void) OUTCHAR(hexchars[c >> 4]);
374 (void) OUTCHAR(hexchars[c & 0xf]);
408 (void) OUTCHAR(hexchars[(c >> 4) & 0xf]);
409 (void) OUTCHAR(hexchars[c & 0xf]);
428 *--mstr = hexchars[val % base];
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/chat/
H A Dchat.c1580 static char hexchars[] = "0123456789abcdef"; local
1695 OUTCHAR(hexchars[c >> 4]);
1696 OUTCHAR(hexchars[c & 0xf]);
1721 *--str = hexchars[val % base];