arg_t Derived Type

type, public :: arg_t


Components

Type Visibility Attributes Name Initial
type(arg_element_t), public, allocatable :: arg(:)
integer, public :: argc
character(len=:), public, allocatable :: entire

Source Code

   type, public :: arg_t
      integer :: argc
      type(arg_element_t), allocatable :: arg(:)
      character(:), allocatable :: entire
   end type arg_t