Trey Hunner treyhunner@gmail.com writes:
+int main(int argc, char** argv) +{
- int n = 0;
- int optc;
- while ((optc = getopt( argc, argv, "n:w:" )) != -1)
- {
switch(optc)
{
case 'n':
n = atoi( optarg );
break;
case '?':
usage();
exit(1);
}
- }
You should at least print a FIXME for other options that it's supposed to support, instead of silently succeeding and doing nothing.