Is it possible to make argp ignore unknown parameters?
I tried using ARGP_NO_ERRS, but in addition to the fact that, along with the errors, also disables the printouts of the help, the first unknown parameter interrupts the parsing.
If, for example, my parameter was -a, and the command line was
$ myProg -c -b -a
the -a parameter is never parsed, because the parsing stops at -c