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.
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
subroutine fglob(search_name,filename,rc)! give the last namecharacter(len=*),intent(in)::search_namecharacter(len=*),intent(INOUT)::filenameinteger,optional,intent(out)::rccharacter(kind=C_CHAR,len=:),allocatable::c_search_namecharacter(kind=C_CHAR,len=512)::c_filenameinteger::slen,lenmaxc_search_name=trim(search_name)//C_NULL_CHARrc=f_call_c_glob(c_search_name,c_filename,slen)filename=""lenmax=len(filename)if(lenmax<slen)then if(MAPL_AM_I_ROOT())write(6,*)'pathlen vs filename_max_char_len: ',slen,lenmax_FAIL('PATHLEN is greater than filename_max_char_len')end if if(slen>0)filename(1:slen)=c_filename(1:slen)return end subroutine fglob