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

/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dutils.c201 static const char hexchars[] = "0123456789abcdef"; local
380 (void) OUTCHAR(hexchars[c >> 4]);
381 (void) OUTCHAR(hexchars[c & 0xf]);
415 (void) OUTCHAR(hexchars[(c >> 4) & 0xf]);
416 (void) OUTCHAR(hexchars[c & 0xf]);
435 *--mstr = hexchars[val % base];

Completed in 57 milliseconds