b64_init Subroutine

public subroutine b64_init()

Initialize the BeFoR64 library.

 use befor64
 call b64_init
 print "(L1)", is_b64_initialized

Arguments

None

Called By

proc~~b64_init~~CalledByGraph proc~b64_init b64_init program~volatile_doctest volatile_doctest program~volatile_doctest->proc~b64_init
Help

Source Code


Source Code

   subroutine b64_init()
   !< Initialize the BeFoR64 library.
   !<
   !< @note This procedure **must** be called before encoding/decoding anything!
   !<
   !<```fortran
   !< use befor64
   !< call b64_init
   !< print "(L1)", is_b64_initialized
   !<```
   !=> T <<<

   if (.not.is_initialized) call penf_init
   is_b64_initialized = .true.
   endsubroutine b64_init