public pure subroutine hexCompareAsInt32(firstString, secondString, output, error)
Compare two strings as hexadecimal strings by parsing them to int32 values first.
Note
Hexadecimal strings are being parsed as bits represented by hexadecimal digits to a signed type.
See
Arguments
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | firstString | A string to be compared to the string | ||
character(len=*), | intent(in) | :: | secondString | A string to be compared to the string | ||
integer(kind=k_int32), | intent(out) | :: | output | An int32 value of 1 if the | ||
logical, | intent(out) | :: | error | A value of |