Home
last modified time | relevance | path

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

/device/moto/shamu/bdAddrLoader/
Daddrloader.c71 int hexa_to_ascii(const unsigned char* hexa, char* ascii, int nHexLen) in hexa_to_ascii() argument
78 ascii[j] = hex_table[hexa[i] >> 4]; in hexa_to_ascii()
79 ascii[j + 1] = hex_table[hexa[i] & 0x0F]; in hexa_to_ascii()
82 ascii[nHexLen*2] = '\0'; in hexa_to_ascii()
84 ALOGI("hex_to_ascii() - converted Data (%s)", ascii); in hexa_to_ascii()