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

代理服务器

开发平台:

Unix_Linux

  1. /* Getopt for GNU.
  2.    Copyright (C) 1987, 88, 89, 90, 91, 1992 Free Software Foundation, Inc.
  3.    This program is free software; you can redistribute it and/or modify it
  4.    under the terms of the GNU Library General Public License as published
  5.    by the Free Software Foundation; either version 2, or (at your option)
  6.    any later version.
  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.
  11.    You should have received a copy of the GNU Library General Public
  12.    License along with this program; if not, write to the Free Software
  13.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  14. #ifdef LIBC
  15. /* For when compiled as part of the GNU C library.  */
  16. #include <ansidecl.h>
  17. #endif
  18. #include "getopt.h"
  19. #ifndef __STDC__
  20. #define const
  21. #endif
  22. #if defined(STDC_HEADERS) || defined(__GNU_LIBRARY__) || defined(LIBC)
  23. #include <stdlib.h>
  24. #else /* STDC_HEADERS or __GNU_LIBRARY__ */
  25. char *getenv ();
  26. #endif /* STDC_HEADERS or __GNU_LIBRARY__ */
  27. #ifndef NULL
  28. #define NULL 0
  29. #endif
  30. int
  31. getopt_long (argc, argv, options, long_options, opt_index)
  32.      int argc;
  33.      char *const *argv;
  34.      const char *options;
  35.      const struct option *long_options;
  36.      int *opt_index;
  37. {
  38.   return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
  39. }
  40. /* Like getopt_long, but '-' as well as '--' can indicate a long option.
  41.    If an option that starts with '-' (not '--') doesn't match a long option,
  42.    but does match a short option, it is parsed as a short option
  43.    instead. */
  44. int 
  45. getopt_long_only (argc, argv, options, long_options, opt_index)
  46.      int argc;
  47.      char *const *argv;
  48.      const char *options;
  49.      const struct option *long_options;
  50.      int *opt_index;
  51. {
  52.   return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
  53. }
  54. #ifdef TEST
  55. #include <stdio.h>
  56. int
  57. main (argc, argv)
  58.      int argc;
  59.      char **argv;
  60. {
  61.   int c;
  62.   int digit_optind = 0;
  63.   while (1)
  64.     {
  65.       int this_option_optind = optind ? optind : 1;
  66.       int option_index = 0;
  67.       static struct option long_options[] =
  68.       {
  69. {"add", 1, 0, 0},
  70. {"append", 0, 0, 0},
  71. {"delete", 1, 0, 0},
  72. {"verbose", 0, 0, 0},
  73. {"create", 0, 0, 0},
  74. {"file", 1, 0, 0},
  75. {0, 0, 0, 0}
  76.       };
  77.       c = getopt_long (argc, argv, "abc:d:0123456789",
  78.        long_options, &option_index);
  79.       if (c == EOF)
  80. break;
  81.       switch (c)
  82. {
  83. case 0:
  84.   printf ("option %s", long_options[option_index].name);
  85.   if (optarg)
  86.     printf (" with arg %s", optarg);
  87.   printf ("n");
  88.   break;
  89. case '0':
  90. case '1':
  91. case '2':
  92. case '3':
  93. case '4':
  94. case '5':
  95. case '6':
  96. case '7':
  97. case '8':
  98. case '9':
  99.   if (digit_optind != 0 && digit_optind != this_option_optind)
  100.     printf ("digits occur in two different argv-elements.n");
  101.   digit_optind = this_option_optind;
  102.   printf ("option %cn", c);
  103.   break;
  104. case 'a':
  105.   printf ("option an");
  106.   break;
  107. case 'b':
  108.   printf ("option bn");
  109.   break;
  110. case 'c':
  111.   printf ("option c with value `%s'n", optarg);
  112.   break;
  113. case 'd':
  114.   printf ("option d with value `%s'n", optarg);
  115.   break;
  116. case '?':
  117.   break;
  118. default:
  119.   printf ("?? getopt returned character code 0%o ??n", c);
  120. }
  121.     }
  122.   if (optind < argc)
  123.     {
  124.       printf ("non-option ARGV-elements: ");
  125.       while (optind < argc)
  126. printf ("%s ", argv[optind++]);
  127.       printf ("n");
  128.     }
  129.   exit (0);
  130. }
  131. #endif /* TEST */