~maria-captains/mariadb-native-client/trunk

« back to all changes in this revision

Viewing changes to libmysql/getopt1.c

  • Committer: ghost
  • Date: 2011-10-10 11:01:17 UTC
  • Revision ID: ghost@work-20111010110117-a2zv9mgwavp0iw0a
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* getopt_long and getopt_long_only entry points for GNU getopt.
 
2
   Copyright (C) 1987, 88, 89, 90, 91, 92, 1993, 1994
 
3
        Free Software Foundation, Inc.
 
4
 
 
5
This file is part of the GNU C Library.  Its master source is NOT part of
 
6
the C library, however.  The master source lives in /gd/gnu/lib.
 
7
 
 
8
The GNU C Library is free software; you can redistribute it and/or
 
9
modify it under the terms of the GNU Library General Public License as
 
10
published by the Free Software Foundation; either version 2 of the
 
11
License, or (at your option) any later version.
 
12
 
 
13
The GNU C Library is distributed in the hope that it will be useful,
 
14
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
Library General Public License for more details.
 
17
 
 
18
You should have received a copy of the GNU Library General Public
 
19
License along with the GNU C Library; see the file COPYING.LIB.  If
 
20
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
 
21
Cambridge, MA 02139, USA.  */
 
22
 
 
23
#ifdef HAVE_CONFIG_H
 
24
#include <config.h>
 
25
#endif
 
26
 
 
27
#include <my_global.h>
 
28
#include "getopt.h"
 
29
 
 
30
#if (!defined (__STDC__) || !__STDC__) && !defined(MSDOS) && !defined(OS2)
 
31
/* This is a separate conditional since some stdc systems
 
32
   reject `defined (const)'.  */
 
33
#ifndef const
 
34
#define const
 
35
#endif
 
36
#endif
 
37
 
 
38
#include <stdio.h>
 
39
 
 
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
#if defined (_LIBC) || !defined (__GNU_LIBRARY__)
 
49
 
 
50
#ifndef __WIN__
 
51
#include <stdlib.h>
 
52
#endif  /* __WIN__ */
 
53
 
 
54
#ifndef NULL
 
55
#define NULL 0
 
56
#endif
 
57
 
 
58
int
 
59
getopt_long (int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index)
 
60
{
 
61
  return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
 
62
}
 
63
 
 
64
/* Like getopt_long, but '-' as well as '--' can indicate a long option.
 
65
   If an option that starts with '-' (not '--') doesn't match a long option,
 
66
   but does match a short option, it is parsed as a short option
 
67
   instead.  */
 
68
 
 
69
int
 
70
getopt_long_only (int argc, char *const *argv, const char *options, const struct option *long_options, int *opt_index)
 
71
{
 
72
  return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
 
73
}
 
74
 
 
75
 
 
76
#endif  /* _LIBC or not __GNU_LIBRARY__.  */
 
77
 
 
78
#ifdef TEST
 
79
 
 
80
#include <stdio.h>
 
81
 
 
82
int
 
83
main (argc, argv)
 
84
     int argc;
 
85
     char **argv;
 
86
{
 
87
  int c;
 
88
  int digit_optind = 0;
 
89
 
 
90
  while (1)
 
91
    {
 
92
      int this_option_optind = optind ? optind : 1;
 
93
      int option_index = 0;
 
94
      static struct option long_options[] =
 
95
      {
 
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}
 
103
      };
 
104
 
 
105
      c = getopt_long (argc, argv, "abc:d:0123456789",
 
106
                       long_options, &option_index);
 
107
      if (c == EOF)
 
108
        break;
 
109
 
 
110
      switch (c)
 
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
        }
 
157
    }
 
158
 
 
159
  if (optind < argc)
 
160
    {
 
161
      printf ("non-option ARGV-elements: ");
 
162
      while (optind < argc)
 
163
        printf ("%s ", argv[optind++]);
 
164
      printf ("\n");
 
165
    }
 
166
 
 
167
  exit (0);
 
168
}
 
169
 
 
170
#endif /* TEST */