By default, parseCommandLineOptions() will accept either a
- or -- prefix for long options -- options with names longer than
a single character.
While this change does not affect behavior, it will be helpful with a
subsequent change that requires long options use the -- prefix.
Any reason why not take a StringRef of the option to compute the prefix of? That would put the .size() gymnastic in one place instead of many.