getopt1.c
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /* getopt_long and getopt_long_only entry points for GNU getopt.
  2.    Copyright (C) 1987, 88, 89, 90, 91, 92, 1993
  3. Free Software Foundation, Inc.
  4.    This program is free software; you can redistribute it and/or
  5.    modify it under the terms of the GNU Library General Public License
  6.    as published by the Free Software Foundation; either version 2, or
  7.    (at your option) any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU Library General Public License for more details.
  12.    You should have received a copy of the GNU Library General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.  */
  15. /* Required to tell conf.h not to include the standard ProFTPD
  16.  * header files
  17.  */
  18. #define __PROFTPD_SUPPORT_LIBRARY
  19. #include <conf.h>
  20. #include "getopt.h"
  21. #ifndef __STDC__
  22. /* This is a separate conditional since some stdc systems
  23.    reject `defined (const)'.  */
  24. #ifndef const
  25. #define const
  26. #endif
  27. #endif
  28. /* Comment out all this code if we are using the GNU C Library, and are not
  29.    actually compiling the library itself.  This code is part of the GNU C
  30.    Library, but also included in many other GNU distributions.  Compiling
  31.    and linking in this code is a waste when using the GNU C library
  32.    (especially if it is a shared library).  Rather than having every GNU
  33.    program understand `configure --with-gnu-libc' and omit the object files,
  34.    it is simpler to just do this in the source for each such file.  */
  35. #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
  36. /* This needs to come after some library #include
  37.    to get __GNU_LIBRARY__ defined.  */
  38. #ifdef __GNU_LIBRARY__
  39. #include <stdlib.h>
  40. #else
  41. char *getenv ();
  42. #endif
  43. #ifndef NULL
  44. #define NULL 0
  45. #endif
  46. int
  47. getopt_long (argc, argv, options, long_options, opt_index)
  48.      int argc;
  49.      char *const *argv;
  50.      const char *options;
  51.      const struct option *long_options;
  52.      int *opt_index;
  53. {
  54.   return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
  55. }
  56. /* Like getopt_long, but '-' as well as '--' can indicate a long option.
  57.    If an option that starts with '-' (not '--') doesn't match a long option,
  58.    but does match a short option, it is parsed as a short option
  59.    instead.  */
  60. int
  61. getopt_long_only (argc, argv, options, long_options, opt_index)
  62.      int argc;
  63.      char *const *argv;
  64.      const char *options;
  65.      const struct option *long_options;
  66.      int *opt_index;
  67. {
  68.   return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
  69. }
  70. #endif /* _LIBC or not __GNU_LIBRARY__.  */
  71. #ifdef TEST
  72. #include <stdio.h>
  73. int
  74. main (argc, argv)
  75.      int argc;
  76.      char **argv;
  77. {
  78.   int c;
  79.   int digit_optind = 0;
  80.   while (1)
  81.     {
  82.       int this_option_optind = optind ? optind : 1;
  83.       int option_index = 0;
  84.       static struct option long_options[] =
  85.       {
  86. {"add", 1, 0, 0},
  87. {"append", 0, 0, 0},
  88. {"delete", 1, 0, 0},
  89. {"verbose", 0, 0, 0},
  90. {"create", 0, 0, 0},
  91. {"file", 1, 0, 0},
  92. {0, 0, 0, 0}
  93.       };
  94.       c = getopt_long (argc, argv, "abc:d:0123456789",
  95.        long_options, &option_index);
  96.       if (c == EOF)
  97. break;
  98.       switch (c)
  99. {
  100. case 0:
  101.   printf ("option %s", long_options[option_index].name);
  102.   if (optarg)
  103.     printf (" with arg %s", optarg);
  104.   printf ("n");
  105.   break;
  106. case '0':
  107. case '1':
  108. case '2':
  109. case '3':
  110. case '4':
  111. case '5':
  112. case '6':
  113. case '7':
  114. case '8':
  115. case '9':
  116.   if (digit_optind != 0 && digit_optind != this_option_optind)
  117.     printf ("digits occur in two different argv-elements.n");
  118.   digit_optind = this_option_optind;
  119.   printf ("option %cn", c);
  120.   break;
  121. case 'a':
  122.   printf ("option an");
  123.   break;
  124. case 'b':
  125.   printf ("option bn");
  126.   break;
  127. case 'c':
  128.   printf ("option c with value `%s'n", optarg);
  129.   break;
  130. case 'd':
  131.   printf ("option d with value `%s'n", optarg);
  132.   break;
  133. case '?':
  134.   break;
  135. default:
  136.   printf ("?? getopt returned character code 0%o ??n", c);
  137. }
  138.     }
  139.   if (optind < argc)
  140.     {
  141.       printf ("non-option ARGV-elements: ");
  142.       while (optind < argc)
  143. printf ("%s ", argv[optind++]);
  144.       printf ("n");
  145.     }
  146.   exit (0);
  147. }
  148. #endif /* TEST */