Declaration:
int isxdigit(unsigned char c);
Description
The isxdigit function checks, if parameter c is a hexadecimal number ('A'-'F', 'a'-'f', '0'-'9').
Returned value
The isxdigit function will return a non-zero value, if parameter c is a hexadecimal number, otherwise it will return 0.
|