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.c150 static const char* hex_table = "0123456789abcdef"; variable
153 **str = hex_table[(*data >> 4) & 0xf]; in byte2hex()
155 **str = hex_table[*data & 0xf]; in byte2hex()