Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dlua_bit.c131 const char *hexdigits = "0123456789abcdef"; in bit_tohex() local
134 if (n < 0) { n = -n; hexdigits = "0123456789ABCDEF"; } in bit_tohex()
136 for (i = (int)n; --i >= 0; ) { buf[i] = hexdigits[b & 15]; b >>= 4; } in bit_tohex()