~ubuntu-branches/ubuntu/vivid/gzip/vivid

« back to all changes in this revision

Viewing changes to lib/getopt1.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-10-19 11:42:42 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20111019114242-d8wiiu8kbvdtgmgj
Tags: 1.4-1ubuntu1
* Merge with Debian testing.  Remaining Ubuntu changes:
  - debian/{control,rules}: Remove the Win32 build and mingw64
    build-dependency, since mingw is in universe, and will remain so for
    the forseeable future.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* getopt_long and getopt_long_only entry points for GNU getopt.
2
 
   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98,2004,2006
3
 
     Free Software Foundation, Inc.
 
2
   Copyright (C) 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1996, 1997,
 
3
   1998, 2004, 2006, 2009, 2010 Free Software Foundation, Inc.
4
4
   This file is part of the GNU C Library.
5
5
 
6
 
   This program is free software; you can redistribute it and/or modify
 
6
   This program is free software: you can redistribute it and/or modify
7
7
   it under the terms of the GNU General Public License as published by
8
 
   the Free Software Foundation; either version 2, or (at your option)
9
 
   any later version.
 
8
   the Free Software Foundation; either version 3 of the License, or
 
9
   (at your option) any later version.
10
10
 
11
11
   This program is distributed in the hope that it will be useful,
12
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
14
   GNU General Public License for more details.
15
15
 
16
 
   You should have received a copy of the GNU General Public License along
17
 
   with this program; if not, write to the Free Software Foundation,
18
 
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
16
   You should have received a copy of the GNU General Public License
 
17
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
19
18
 
20
19
#ifdef _LIBC
21
20
# include <getopt.h>
33
32
#include <stdlib.h>
34
33
#endif
35
34
 
36
 
#ifndef NULL
 
35
#ifndef NULL
37
36
#define NULL 0
38
37
#endif
39
38
 
40
39
int
41
40
getopt_long (int argc, char *__getopt_argv_const *argv, const char *options,
42
 
             const struct option *long_options, int *opt_index)
 
41
             const struct option *long_options, int *opt_index)
43
42
{
44
43
  return _getopt_internal (argc, (char **) argv, options, long_options,
45
 
                           opt_index, 0, 0);
 
44
                           opt_index, 0, 0);
46
45
}
47
46
 
48
47
int
49
48
_getopt_long_r (int argc, char **argv, const char *options,
50
 
                const struct option *long_options, int *opt_index,
51
 
                struct _getopt_data *d)
 
49
                const struct option *long_options, int *opt_index,
 
50
                struct _getopt_data *d)
52
51
{
53
52
  return _getopt_internal_r (argc, argv, options, long_options, opt_index,
54
 
                             0, 0, d);
 
53
                             0, d, 0);
55
54
}
56
55
 
57
56
/* Like getopt_long, but '-' as well as '--' can indicate a long option.
61
60
 
62
61
int
63
62
getopt_long_only (int argc, char *__getopt_argv_const *argv,
64
 
                  const char *options,
65
 
                  const struct option *long_options, int *opt_index)
 
63
                  const char *options,
 
64
                  const struct option *long_options, int *opt_index)
66
65
{
67
66
  return _getopt_internal (argc, (char **) argv, options, long_options,
68
 
                           opt_index, 1, 0);
 
67
                           opt_index, 1, 0);
69
68
}
70
69
 
71
70
int
72
71
_getopt_long_only_r (int argc, char **argv, const char *options,
73
 
                     const struct option *long_options, int *opt_index,
74
 
                     struct _getopt_data *d)
 
72
                     const struct option *long_options, int *opt_index,
 
73
                     struct _getopt_data *d)
75
74
{
76
75
  return _getopt_internal_r (argc, argv, options, long_options, opt_index,
77
 
                             1, 0, d);
 
76
                             1, d, 0);
78
77
}
79
78
 
80
79
 
92
91
    {
93
92
      int this_option_optind = optind ? optind : 1;
94
93
      int option_index = 0;
95
 
      static struct option long_options[] =
 
94
      static const struct option long_options[] =
96
95
      {
97
 
        {"add", 1, 0, 0},
98
 
        {"append", 0, 0, 0},
99
 
        {"delete", 1, 0, 0},
100
 
        {"verbose", 0, 0, 0},
101
 
        {"create", 0, 0, 0},
102
 
        {"file", 1, 0, 0},
103
 
        {0, 0, 0, 0}
 
96
        {"add", 1, 0, 0},
 
97
        {"append", 0, 0, 0},
 
98
        {"delete", 1, 0, 0},
 
99
        {"verbose", 0, 0, 0},
 
100
        {"create", 0, 0, 0},
 
101
        {"file", 1, 0, 0},
 
102
        {0, 0, 0, 0}
104
103
      };
105
104
 
106
105
      c = getopt_long (argc, argv, "abc:d:0123456789",
107
 
                       long_options, &option_index);
 
106
                       long_options, &option_index);
108
107
      if (c == -1)
109
 
        break;
 
108
        break;
110
109
 
111
110
      switch (c)
112
 
        {
113
 
        case 0:
114
 
          printf ("option %s", long_options[option_index].name);
115
 
          if (optarg)
116
 
            printf (" with arg %s", optarg);
117
 
          printf ("\n");
118
 
          break;
119
 
 
120
 
        case '0':
121
 
        case '1':
122
 
        case '2':
123
 
        case '3':
124
 
        case '4':
125
 
        case '5':
126
 
        case '6':
127
 
        case '7':
128
 
        case '8':
129
 
        case '9':
130
 
          if (digit_optind != 0 && digit_optind != this_option_optind)
131
 
            printf ("digits occur in two different argv-elements.\n");
132
 
          digit_optind = this_option_optind;
133
 
          printf ("option %c\n", c);
134
 
          break;
135
 
 
136
 
        case 'a':
137
 
          printf ("option a\n");
138
 
          break;
139
 
 
140
 
        case 'b':
141
 
          printf ("option b\n");
142
 
          break;
143
 
 
144
 
        case 'c':
145
 
          printf ("option c with value `%s'\n", optarg);
146
 
          break;
147
 
 
148
 
        case 'd':
149
 
          printf ("option d with value `%s'\n", optarg);
150
 
          break;
151
 
 
152
 
        case '?':
153
 
          break;
154
 
 
155
 
        default:
156
 
          printf ("?? getopt returned character code 0%o ??\n", c);
157
 
        }
 
111
        {
 
112
        case 0:
 
113
          printf ("option %s", long_options[option_index].name);
 
114
          if (optarg)
 
115
            printf (" with arg %s", optarg);
 
116
          printf ("\n");
 
117
          break;
 
118
 
 
119
        case '0':
 
120
        case '1':
 
121
        case '2':
 
122
        case '3':
 
123
        case '4':
 
124
        case '5':
 
125
        case '6':
 
126
        case '7':
 
127
        case '8':
 
128
        case '9':
 
129
          if (digit_optind != 0 && digit_optind != this_option_optind)
 
130
            printf ("digits occur in two different argv-elements.\n");
 
131
          digit_optind = this_option_optind;
 
132
          printf ("option %c\n", c);
 
133
          break;
 
134
 
 
135
        case 'a':
 
136
          printf ("option a\n");
 
137
          break;
 
138
 
 
139
        case 'b':
 
140
          printf ("option b\n");
 
141
          break;
 
142
 
 
143
        case 'c':
 
144
          printf ("option c with value `%s'\n", optarg);
 
145
          break;
 
146
 
 
147
        case 'd':
 
148
          printf ("option d with value `%s'\n", optarg);
 
149
          break;
 
150
 
 
151
        case '?':
 
152
          break;
 
153
 
 
154
        default:
 
155
          printf ("?? getopt returned character code 0%o ??\n", c);
 
156
        }
158
157
    }
159
158
 
160
159
  if (optind < argc)
161
160
    {
162
161
      printf ("non-option ARGV-elements: ");
163
162
      while (optind < argc)
164
 
        printf ("%s ", argv[optind++]);
 
163
        printf ("%s ", argv[optind++]);
165
164
      printf ("\n");
166
165
    }
167
166