OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tohexdigit
(Results
1 - 1
of
1
) sorted by null
/external/libedit/src/
chartype.c
318
#define
tohexdigit
(v) "0123456789ABCDEF"[v]
macro
320
*dst++ =
tohexdigit
(((unsigned int) c >> 16) & 0xf);
321
*dst++ =
tohexdigit
(((unsigned int) c >> 12) & 0xf);
322
*dst++ =
tohexdigit
(((unsigned int) c >> 8) & 0xf);
323
*dst++ =
tohexdigit
(((unsigned int) c >> 4) & 0xf);
324
*dst =
tohexdigit
(((unsigned int) c ) & 0xf);
Completed in 70 milliseconds