Skip to main content

LowerCase

This is a function which converts a string into lower case.

Interface

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