Skip to main content

ToUpperCase

This is a subroutine which converts a string into upper case.

Interface

INTERFACE
MODULE PURE SUBROUTINE ToUpperCase(chars)
CHARACTER(*), INTENT(INOUT) :: chars
END SUBROUTINE ToUpperCase
END INTERFACE