ixHexToChar -- Converts a hex value to its byte value.
void ixHexToChar(UCharT *Char, UCharT *Hex)
Char -- A pointer to a character.
Hex -- A pointer to the two bytes which have the hex value.
Nothing
ixHexToChar converts two hex characters into a single byte of corresponding value. So, for example if you pass a pointer to the characters "43", the byte pointed to by Char will be converted to the character "C".