Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | rcToCheck | |||
character(len=*), | intent(out) | :: | msg | |||
integer, | intent(out) | :: | msglen |
subroutine ESMF_LogRc2Msg (rcToCheck, msg, msglen) ! ! !ARGUMENTS: ! integer, intent(in) :: rcToCheck character(*), intent(out) :: msg integer, intent(out) :: msglen ! ! !DESCRIPTION: ! This subroutine converts an integer rc to a message string. ! ! The arguments are: ! \begin{description} ! ! \item [rcToCheck] ! An ESMF return code. ! \item [msg] ! A character string for the message ! \item [msglen] ! Message length exclusive of trailing blanks. ! \end{description} ! !EOPI call c_esmc_loggeterrormsg (rcToCheck, msg, msglen) end subroutine ESMF_LogRc2Msg