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
::
dummy
character(len=1),
private
::
first_char
integer,
private
::
ios
Source Code
pure function is_shell_header(line)result(res)!! Check if a line is a shell header line (starts with S, P, D, F, G, H, I, or L)character(len=*),intent(in)::linelogical::rescharacter(len=1)::first_charinteger::ios,dummyres=.false.if(len_trim(line)==0)returnfirst_char=line(1:1)if(.not.any(first_char==['S','P','D','F','G','H','I','L']))return read(line(2:),*,iostat=ios)dummyres=(ios==0)end function is_shell_header