is_hex_digit Function

public pure function is_hex_digit(c)

Checks whether c is a digit in base 16 (0 .. 9, A .. F, a .. f).

Arguments

Type IntentOptional Attributes Name
character(len=1), intent(in) :: c

The character to test.

Return Value logical