~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to lib/getopt1.c

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

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
 
   NOTE: The canonical source of this file is maintained with the GNU C Library.
5
 
   Bugs can be reported to bug-glibc@gnu.org.
 
4
   This file is part of the GNU C Library.
6
5
 
7
 
   This program is free software; you can redistribute it and/or modify it
8
 
   under the terms of the GNU General Public License as published by the
9
 
   Free Software Foundation; either version 2, or (at your option) any
10
 
   later version.
 
6
   This program is free software; you can redistribute it and/or modify
 
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.
11
10
 
12
11
   This program is distributed in the hope that it will be useful,
13
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
14
   GNU General Public License for more details.
16
15
 
17
 
   You should have received a copy of the GNU General Public License
18
 
   along with this program; if not, write to the Free Software Foundation,
 
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,
19
18
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
19
 
21
20
#ifdef HAVE_CONFIG_H
22
21
#include <config.h>
 
22
#endif
 
23
 
 
24
#ifdef _LIBC
 
25
# include <getopt.h>
23
26
#else
24
 
#if !defined __STDC__ || !__STDC__
25
 
/* This is a separate conditional since some stdc systems
26
 
   reject `defined (const)'.  */
27
 
#ifndef const
28
 
#define const
29
 
#endif
30
 
#endif
31
 
#endif
32
 
 
33
 
#include "getopt.h"
 
27
# include "getopt.h"
 
28
#endif
 
29
#include "getopt_int.h"
34
30
 
35
31
#include <stdio.h>
36
32
 
37
 
/* Comment out all this code if we are using the GNU C Library, and are not
38
 
   actually compiling the library itself.  This code is part of the GNU C
39
 
   Library, but also included in many other GNU distributions.  Compiling
40
 
   and linking in this code is a waste when using the GNU C library
41
 
   (especially if it is a shared library).  Rather than having every GNU
42
 
   program understand `configure --with-gnu-libc' and omit the object files,
43
 
   it is simpler to just do this in the source for each such file.  */
44
 
 
45
 
#define GETOPT_INTERFACE_VERSION 2
46
 
#if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
47
 
#include <gnu-versions.h>
48
 
#if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
49
 
#define ELIDE_CODE
50
 
#endif
51
 
#endif
52
 
 
53
 
#ifndef ELIDE_CODE
54
 
 
55
 
 
56
33
/* This needs to come after some library #include
57
34
   to get __GNU_LIBRARY__ defined.  */
58
35
#ifdef __GNU_LIBRARY__
64
41
#endif
65
42
 
66
43
int
67
 
getopt_long (argc, argv, options, long_options, opt_index)
68
 
     int argc;
69
 
     char *const *argv;
70
 
     const char *options;
71
 
     const struct option *long_options;
72
 
     int *opt_index;
 
44
getopt_long (int argc, char *const *argv, const char *options,
 
45
             const struct option *long_options, int *opt_index)
73
46
{
74
47
  return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
75
48
}
76
49
 
 
50
int
 
51
_getopt_long_r (int argc, char *const *argv, const char *options,
 
52
                const struct option *long_options, int *opt_index,
 
53
                struct _getopt_data *d)
 
54
{
 
55
  return _getopt_internal_r (argc, argv, options, long_options, opt_index,
 
56
                             0, d);
 
57
}
 
58
 
77
59
/* Like getopt_long, but '-' as well as '--' can indicate a long option.
78
60
   If an option that starts with '-' (not '--') doesn't match a long option,
79
61
   but does match a short option, it is parsed as a short option
80
62
   instead.  */
81
63
 
82
64
int
83
 
getopt_long_only (argc, argv, options, long_options, opt_index)
84
 
     int argc;
85
 
     char *const *argv;
86
 
     const char *options;
87
 
     const struct option *long_options;
88
 
     int *opt_index;
 
65
getopt_long_only (int argc, char *const *argv, const char *options,
 
66
                  const struct option *long_options, int *opt_index)
89
67
{
90
68
  return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
91
69
}
92
70
 
 
71
int
 
72
_getopt_long_only_r (int argc, char *const *argv, const char *options,
 
73
                     const struct option *long_options, int *opt_index,
 
74
                     struct _getopt_data *d)
 
75
{
 
76
  return _getopt_internal_r (argc, argv, options, long_options, opt_index,
 
77
                             1, d);
 
78
}
93
79
 
94
 
#endif  /* Not ELIDE_CODE.  */
95
80
 
96
81
#ifdef TEST
97
82
 
98
83
#include <stdio.h>
99
84
 
100
85
int
101
 
main (argc, argv)
102
 
     int argc;
103
 
     char **argv;
 
86
main (int argc, char **argv)
104
87
{
105
88
  int c;
106
89
  int digit_optind = 0;