is_not_number Function

public function is_not_number(c)

returns true if the character is not a number.

Arguments

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

Return Value logical


Calls

proc~~is_not_number~~CallsGraph proc~is_not_number is_not_number proc~is_number is_number proc~is_not_number->proc~is_number

Source Code

    logical function is_not_number(c)
    character(len=1),intent(in) :: c
    is_not_number = .not. is_number(c)
    end function is_not_number