Home
last modified time | relevance | path

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

/external/libedit/src/
Dchartype.c328 #define tooctaldigit(v) ((v) + '0') in ct_visual_char() macro
329 *dst++ = tooctaldigit(((unsigned int) c >> 6) & 0x7); in ct_visual_char()
330 *dst++ = tooctaldigit(((unsigned int) c >> 3) & 0x7); in ct_visual_char()
331 *dst++ = tooctaldigit(((unsigned int) c ) & 0x7); in ct_visual_char()