HomeSort by: relevance | last modified time | path
    Searched defs:tohexdigit (Results 1 - 1 of 1) sorted by relevancy

  /src/lib/libedit/
chartype.c 310 #define tohexdigit(v) "0123456789ABCDEF"[v] macro
312 *dst++ = tohexdigit(((unsigned int) c >> 16) & 0xf);
313 *dst++ = tohexdigit(((unsigned int) c >> 12) & 0xf);
314 *dst++ = tohexdigit(((unsigned int) c >> 8) & 0xf);
315 *dst++ = tohexdigit(((unsigned int) c >> 4) & 0xf);
316 *dst = tohexdigit(((unsigned int) c ) & 0xf);

Completed in 13 milliseconds