File: tstgetopt.c

package info (click to toggle)
eglibc 2.13-38%2Bdeb7u10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 148,332 kB
  • sloc: ansic: 916,251; asm: 203,086; sh: 9,197; makefile: 7,792; perl: 2,252; awk: 1,728; cpp: 1,279; pascal: 723; yacc: 317; sed: 131
file content (76 lines) | stat: -rw-r--r-- 1,708 bytes parent folder | download | duplicates (46)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <getopt.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

int
main (int argc, char **argv)
{
  static const struct option options[] =
    {
      {"required", required_argument, NULL, 'r'},
      {"optional", optional_argument, NULL, 'o'},
      {"none",     no_argument,       NULL, 'n'},
      {"color",    no_argument,       NULL, 'C'},
      {"colour",   no_argument,       NULL, 'C'},
      {NULL,       0,                 NULL, 0 }
    };

  int aflag = 0;
  int bflag = 0;
  char *cvalue = NULL;
  int Cflag = 0;
  int nflag = 0;
  int index;
  int c;
  int result = 0;

  while ((c = getopt_long (argc, argv, "abc:", options, NULL)) >= 0)
    switch (c)
      {
      case 'a':
	aflag = 1;
	break;
      case 'b':
	bflag = 1;
	break;
      case 'c':
	cvalue = optarg;
	break;
      case 'C':
	++Cflag;
	break;
      case '?':
	fputs ("Unknown option.\n", stderr);
	return 1;
      default:
	fprintf (stderr, "This should never happen!\n");
	return 1;

      case 'r':
	printf ("--required %s\n", optarg);
	result |= strcmp (optarg, "foobar") != 0;
	break;
      case 'o':
	printf ("--optional %s\n", optarg);
	result |= optarg == NULL || strcmp (optarg, "bazbug") != 0;
	break;
      case 'n':
	puts ("--none");
	nflag = 1;
	break;
      }

  printf ("aflag = %d, bflag = %d, cvalue = %s, Cflags = %d, nflag = %d\n",
	  aflag, bflag, cvalue, Cflag, nflag);

  result |= (aflag != 1 || bflag != 1 || cvalue == NULL
	     || strcmp (cvalue, "foobar") != 0 || Cflag != 3 || nflag != 1);

  for (index = optind; index < argc; index++)
    printf ("Non-option argument %s\n", argv[index]);

  result |= optind + 1 != argc || strcmp (argv[optind], "random") != 0;

  return result;
}