Skip to main content

UpperCase

This is a function which returns a string in upper case.

Interface

INTERFACE
MODULE PURE FUNCTION UpperCase(chars) RESULT(Ans)
CHARACTER(*), INTENT(IN) :: chars
CHARACTER(LEN(chars)) :: ans
END FUNCTION UpperCase
END INTERFACE