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.
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.
elemental subroutine b64_decode_I1(code,n)!< Decode a base64 code into a scalar number (I1P).!<!<```fortran!< use befor64!< use penf!< integer(I1P) :: scalar_I1!< call b64_decode(code='eA==',n=scalar_I1)!< print "(L1)", scalar_I1==120_I1P!<```!=> T <<<character(*),intent(in)::code!< Encoded scalar.integer(I1P),intent(out)::n!< Number to be decoded.integer(I1P),allocatable::nI1P(:)!< One byte integer array containing n.allocate(nI1P(1:BYI1P));nI1P=0_I1Pcall decode_bits(code=code,bits=nI1P)n=transfer(nI1P,n)endsubroutine b64_decode_I1