HomeSort by relevance Sort by last modified time
    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