Skip to content

Commit

Permalink
print_commandline_options_values(): added Doxygen descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcvdSluys committed Nov 22, 2015
1 parent e2fd48e commit c4d41e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/command_line.f90
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,15 @@ end subroutine get_commandline_options_values


!*********************************************************************************************************************************
!> \brief Print all command-line options and values found to stdOut for debugging
!!
!! \retval nopts Number of options found (without counting their variables)
!! \retval options Array of command-line options found
!! \retval values Array of command-line values found (i.e., the parameters that belong to an option)
!! \retval optypes Array of option types: 10: normal option (no value), 20/21: short option (one dash) without/with value,
!! 30/31: long option (two dashes) without/with value
!! \retval cl_option Struct containing command-line option names, values, has_val, short and long

subroutine print_commandline_options_values(nopts,options,values,optypes, cl_option)
implicit none
integer, intent(in) :: Nopts, optypes(nOpts)
Expand Down

0 comments on commit c4d41e1

Please sign in to comment.