The isxdigit function returns a value of type boolean, which indicates whether the parameter passed to it is a hexadecimal digit character (i.e. '0'..'9', and 'a'..'f', and 'A'..'F'). If the parameter is a hexadecimal digit character then the value true is returned, and if the parameter is not a hexadecimal digit character then the value false is returned.
The isxdigit function's only parameter is an expression of char type.
isxdigit('a') returns true
isxdigit('A') returns true
isxdigit('h') returns false
isxdigit('1') returns true
isxdigit('@') returns false
isxdigit('_') returns false
Operating Systems: All
Standard Pascal: No