std::isxdigit (3) Linux Manual Page
std::isxdigit – std::isxdigit Synopsis Defined in header<cctype> int isxdigit(int ch); Checks if the given character is a hexadecimal numeric character (0123456789abcdefABCDEF). The behavior is undefined if the value of ch is not representable as unsigned char and is not equal to EOF. Parameters ch – character to classify Return value Non-zero value if the character…
