I'm trying to parse command line options using code generated by gengetopt, and I'm trying to figure out how to parse an extra argument (after all the other options) that has no long or short option.
I'd like to call it like this:
program [options] [input file]
ex: program -a -b -letterc "C:\somefile.txt" or program -a -b -letterc somefile.txt
where the option "letterc" has no arguments.
Does anyone know how to do this using gengetopt?
These should be avaiable in the
inputs
member of thegengetopt_args_info
. There areinput_num
of them.