Home
last modified time | relevance | path

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

/system/bt/btif/src/
Dbtif_sock_util.c168 static const char* hex_table = "0123456789abcdef"; variable
171 **str = hex_table[(*data >> 4) & 0xf]; in byte2hex()
173 **str = hex_table[*data & 0xf]; in byte2hex()