Convert byte value to hex string.
bool Byte2Hex( BYTE bValue, LPSTR lpBuff )
returns true if successfully, else return false.
EX1
void Byte2Hex_ex1() { BYTE bValue = 10; char pchar[20]; bool bRet = Byte2Hex(bValue, pchar); if(bRet) { out_str(pchar); // output 0A } else { out_str("Fail to convert"); } }
Hex2Dec, Bin2Dec
origin.h