1995-02-18 01:27:10 +00:00
|
|
|
/*@group*/
|
2003-10-06 21:20:39 +00:00
|
|
|
#include <ctype.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
#include <stdio.h>
|
2003-10-06 21:20:39 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
1995-02-18 01:27:10 +00:00
|
|
|
|
2003-10-06 21:20:39 +00:00
|
|
|
int
|
1995-02-18 01:27:10 +00:00
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
|
|
|
int aflag = 0;
|
|
|
|
int bflag = 0;
|
|
|
|
char *cvalue = NULL;
|
|
|
|
int index;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
opterr = 0;
|
|
|
|
/*@end group*/
|
|
|
|
|
|
|
|
/*@group*/
|
|
|
|
while ((c = getopt (argc, argv, "abc:")) != -1)
|
|
|
|
switch (c)
|
|
|
|
{
|
|
|
|
case 'a':
|
|
|
|
aflag = 1;
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
bflag = 1;
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
cvalue = optarg;
|
|
|
|
break;
|
|
|
|
case '?':
|
2003-10-06 21:20:39 +00:00
|
|
|
if (optopt == 'c')
|
|
|
|
fprintf (stderr, "Option -%c requires an argument.\n", optopt);
|
|
|
|
else if (isprint (optopt))
|
1995-02-18 01:27:10 +00:00
|
|
|
fprintf (stderr, "Unknown option `-%c'.\n", optopt);
|
|
|
|
else
|
|
|
|
fprintf (stderr,
|
|
|
|
"Unknown option character `\\x%x'.\n",
|
|
|
|
optopt);
|
|
|
|
return 1;
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
/*@end group*/
|
|
|
|
|
|
|
|
/*@group*/
|
1998-03-19 14:32:08 +00:00
|
|
|
printf ("aflag = %d, bflag = %d, cvalue = %s\n",
|
|
|
|
aflag, bflag, cvalue);
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
for (index = optind; index < argc; index++)
|
|
|
|
printf ("Non-option argument %s\n", argv[index]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/*@end group*/
|