public function MAPLPy_ESMF_AttributeGet_1D_int(esmf_state_c_ptr, name_c_ptr, name_len) result(return_value) bind(c, name="MAPLPy_ESMF_AttributeGet_1D_int")
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
function MAPLPy_ESMF_AttributeGet_1D_int(esmf_state_c_ptr,name_c_ptr,name_len)result(return_value)bind(c,name="MAPLPy_ESMF_AttributeGet_1D_int")! Read in STATEtype(c_ptr),intent(in),value::esmf_state_c_ptrtype(ESMF_State),pointer::state! Read in nametype(c_ptr),intent(in),value::name_c_ptrinteger(c_int),intent(in),value::name_lencharacter(len=name_len,kind=c_char),pointer::varname! Return valueinteger::return_value! Turn the C string into a Fortran stringcall c_f_pointer(name_c_ptr,varname)! Turn the ESMF State C pointer to a Fortran pointercall c_f_pointer(esmf_state_c_ptr,state)! Call functioncall ESMF_AttributeGet(state,name=varname,value=return_value,RC=STATUS)VERIFY_(STATUS)end function MAPLPy_ESMF_AttributeGet_1D_int