Prints the getopt "helpWanted" help table to screen.
Results from a getopt call.
auto results = args.getopt( "n|nickname", "Bot nickname", &nickname, "s|server", "Server", &server, // ... ); if (results.helpWanted) { printHelp(results); }
Prints the getopt "helpWanted" help table to screen.