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.
Source Code
subroutine cla_get_flag(key,logical_value)implicit nonecharacter(len=*)::keycharacter(len=STRLEN)::valuelogical::logical_valueinteger(kind=int_kind)::klogical_value=.false.call cla_get_char(key,value)if(index(trim(value),trim(cla_empty))==0)then do k=1,6if(index(trim(value),trim(cla_true_str(k)))/=0)thenlogical_value=.true.endif end do end if end subroutine cla_get_flag