Return the binary representation of the two provided values, MSB and LSB, that make up the nibbles of a hexadecimal digit.
Synopsis
Declared in <llvm/ADT/StringExtras.h>
uint8_t
hexFromNibbles(
char MSB,
char LSB);
Return Value
The decoded byte value.
Parameters
Name |
Description |
MSB |
high nibble as a hex digit character |
LSB |
low nibble as a hex digit character |
Created with MrDocs