~ubuntu-branches/ubuntu/gutsy/findutils/gutsy-proposed

« back to all changes in this revision

Viewing changes to gnulib/lib/getopt1.c

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2005-07-04 11:37:37 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050704113737-ll89ui8be35r0pir
Tags: 4.2.22-2
* Remove locatedb on purge. (Closes: #315343)
* revert regex-syntax back to emacs-re. (Closes: #315136) Future versions
  will allow to select this by commandline parameter.

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
 
2
   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98,2004
3
3
     Free Software Foundation, Inc.
4
4
   This file is part of the GNU C Library.
5
5
 
15
15
 
16
16
   You should have received a copy of the GNU General Public License along
17
17
   with this program; if not, write to the Free Software Foundation,
18
 
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
18
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
19
19
 
20
20
#ifdef HAVE_CONFIG_H
21
21
#include <config.h>
26
26
#else
27
27
# include "getopt.h"
28
28
#endif
29
 
 
30
 
#if !defined __STDC__ || !__STDC__
31
 
/* This is a separate conditional since some stdc systems
32
 
   reject `defined (const)'.  */
33
 
#ifndef const
34
 
#define const
35
 
#endif
36
 
#endif
 
29
#include "getopt_int.h"
37
30
 
38
31
#include <stdio.h>
39
32
 
40
 
/* Comment out all this code if we are using the GNU C Library, and are not
41
 
   actually compiling the library itself.  This code is part of the GNU C
42
 
   Library, but also included in many other GNU distributions.  Compiling
43
 
   and linking in this code is a waste when using the GNU C library
44
 
   (especially if it is a shared library).  Rather than having every GNU
45
 
   program understand `configure --with-gnu-libc' and omit the object files,
46
 
   it is simpler to just do this in the source for each such file.  */
47
 
 
48
 
#define GETOPT_INTERFACE_VERSION 2
49
 
#if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
50
 
#include <gnu-versions.h>
51
 
#if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
52
 
#define ELIDE_CODE
53
 
#endif
54
 
#endif
55
 
 
56
 
#ifndef ELIDE_CODE
57
 
 
58
 
 
59
33
/* This needs to come after some library #include
60
34
   to get __GNU_LIBRARY__ defined.  */
61
35
#ifdef __GNU_LIBRARY__
67
41
#endif
68
42
 
69
43
int
70
 
getopt_long (argc, argv, options, long_options, opt_index)
71
 
     int argc;
72
 
     char *const *argv;
73
 
     const char *options;
74
 
     const struct option *long_options;
75
 
     int *opt_index;
76
 
{
77
 
  return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
 
44
getopt_long (int argc, char *__getopt_argv_const *argv, const char *options,
 
45
             const struct option *long_options, int *opt_index)
 
46
{
 
47
  return _getopt_internal (argc, (char **) argv, options, long_options,
 
48
                           opt_index, 0, 0);
 
49
}
 
50
 
 
51
int
 
52
_getopt_long_r (int argc, char **argv, const char *options,
 
53
                const struct option *long_options, int *opt_index,
 
54
                struct _getopt_data *d)
 
55
{
 
56
  return _getopt_internal_r (argc, argv, options, long_options, opt_index,
 
57
                             0, 0, d);
78
58
}
79
59
 
80
60
/* Like getopt_long, but '-' as well as '--' can indicate a long option.
83
63
   instead.  */
84
64
 
85
65
int
86
 
getopt_long_only (argc, argv, options, long_options, opt_index)
87
 
     int argc;
88
 
     char *const *argv;
89
 
     const char *options;
90
 
     const struct option *long_options;
91
 
     int *opt_index;
92
 
{
93
 
  return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
94
 
}
95
 
 
96
 
# ifdef _LIBC
97
 
libc_hidden_def (getopt_long)
98
 
libc_hidden_def (getopt_long_only)
99
 
# endif
100
 
 
101
 
#endif  /* Not ELIDE_CODE.  */
 
66
getopt_long_only (int argc, char *__getopt_argv_const *argv,
 
67
                  const char *options,
 
68
                  const struct option *long_options, int *opt_index)
 
69
{
 
70
  return _getopt_internal (argc, (char **) argv, options, long_options,
 
71
                           opt_index, 1, 0);
 
72
}
 
73
 
 
74
int
 
75
_getopt_long_only_r (int argc, char **argv, const char *options,
 
76
                     const struct option *long_options, int *opt_index,
 
77
                     struct _getopt_data *d)
 
78
{
 
79
  return _getopt_internal_r (argc, argv, options, long_options, opt_index,
 
80
                             1, 0, d);
 
81
}
 
82
 
102
83
 
103
84
#ifdef TEST
104
85
 
105
86
#include <stdio.h>
106
87
 
107
88
int
108
 
main (argc, argv)
109
 
     int argc;
110
 
     char **argv;
 
89
main (int argc, char **argv)
111
90
{
112
91
  int c;
113
92
  int digit_optind = 0;