Library for parsing arguments GNU-style?
- by Delan Azabani
I've noticed the basic 'style' of most GNU core applications whereby arguments are:
--longoption
--longoption=value or --longoption value
-abcdefg (multiple options)
-iuwww-data (option i, u = www-data)
They follow the above style. I want to avoid writing an argument parser if there's a library that does this using the above style. Is there one you know of?