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.
Variables
Type
Visibility
Attributes
Name
Initial
integer,
private
::
i
integer,
private
::
ic
Source Code
pure function uppercase(str)result(upper)!! Convert a string to uppercase, should use pic_ascii!character(len=*),intent(in)::strcharacter(len=:),allocatable::upperinteger::i,icallocate(character(len=len(str))::upper)upper=strdo i=1,len(str)ic=iachar(str(i:i))if(ic>=iachar('a').and.ic<=iachar('z'))thenupper(i:i)=achar(ic-32)end if end do end function uppercase