getopt1.c
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:4k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /* Getopt for GNU.
  2.    Copyright (C) 1987, 88, 89, 90, 91, 1992 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8. The GNU C Library 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 GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with the GNU C Library; see the file COPYING.LIB.  If
  14. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  15. Cambridge, MA 02139, USA.  */
  16. /* Modified for use with Nessus by <jordan@mjh.teddy-net.com>
  17.    $Id: getopt1.c,v 1.6 2001/10/24 15:42:52 renaud Exp $ */
  18. #include <includes.h>
  19. #ifdef _WIN32
  20. #include "config.w32"
  21. #endif
  22. /***********************/
  23. #ifndef HAVE_GETOPT_LONG
  24. /***********************/
  25. #include "../include/getopt.h"
  26. #undef optarg
  27. #undef opterr
  28. #undef optopt
  29. #undef optind
  30. #ifndef __STDC__
  31. #define const
  32. #endif
  33. #if defined(STDC_HEADERS) || defined(__GNU_LIBRARY__) || defined (LIBC)
  34. #include <stdlib.h>
  35. #else /* STDC_HEADERS or __GNU_LIBRARY__ */
  36. char *getenv ();
  37. #endif /* STDC_HEADERS or __GNU_LIBRARY__ */
  38. #ifndef NULL
  39. #define NULL 0
  40. #endif
  41. #ifdef APPLY_OPTVAR_REPLACEMENTS
  42. char *get_optarg (void) {return optarg;}
  43. int   get_opterr (void) {return opterr;}
  44. int   get_optopt (void) {return optopt;}
  45. int   get_optind (void) {return optind;}
  46. int   inc_optind (void) {return optind++;}
  47. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  48. /***************************/
  49. #ifndef __GNU_LIBRARY__
  50. #endif /* disabe #ifdef */
  51. /***************************/
  52. int
  53. getopt_long (argc, argv, options, long_options, opt_index)
  54.      int argc;
  55.      char *const *argv;
  56.      const char *options;
  57.      const struct option *long_options;
  58.      int *opt_index;
  59. {
  60.   return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
  61. }
  62. /* Like getopt_long, but '-' as well as '--' can indicate a long option.
  63.    If an option that starts with '-' (not '--') doesn't match a long option,
  64.    but does match a short option, it is parsed as a short option
  65.    instead.  */
  66. int 
  67. getopt_long_only (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;
  73. {
  74.   return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
  75. }
  76. /*********************************/
  77. #if 0           /* disabe #endif */
  78. #endif /* not __GNU_LIBRARY__.  */
  79. /*********************************/
  80. #ifdef TEST
  81. #include <stdio.h>
  82. int
  83. main (argc, argv)
  84.      int argc;
  85.      char **argv;
  86. {
  87.   int c;
  88.   int digit_optind = 0;
  89.   while (1)
  90.     {
  91.       int this_option_optind = optind ? optind : 1;
  92.       int option_index = 0;
  93.       static struct option long_options[] =
  94.       {
  95. {"add", 1, 0, 0},
  96. {"append", 0, 0, 0},
  97. {"delete", 1, 0, 0},
  98. {"verbose", 0, 0, 0},
  99. {"create", 0, 0, 0},
  100. {"file", 1, 0, 0},
  101. {0, 0, 0, 0}
  102.       };
  103.       c = getopt_long (argc, argv, "abc:d:0123456789",
  104.        long_options, &option_index);
  105.       if (c == EOF)
  106. break;
  107.       switch (c)
  108. {
  109. case 0:
  110.   printf ("option %s", long_options[option_index].name);
  111.   if (optarg)
  112.     printf (" with arg %s", optarg);
  113.   printf ("n");
  114.   break;
  115. case '0':
  116. case '1':
  117. case '2':
  118. case '3':
  119. case '4':
  120. case '5':
  121. case '6':
  122. case '7':
  123. case '8':
  124. case '9':
  125.   if (digit_optind != 0 && digit_optind != this_option_optind)
  126.     printf ("digits occur in two different argv-elements.n");
  127.   digit_optind = this_option_optind;
  128.   printf ("option %cn", c);
  129.   break;
  130. case 'a':
  131.   printf ("option an");
  132.   break;
  133. case 'b':
  134.   printf ("option bn");
  135.   break;
  136. case 'c':
  137.   printf ("option c with value `%s'n", optarg);
  138.   break;
  139. case 'd':
  140.   printf ("option d with value `%s'n", optarg);
  141.   break;
  142. case '?':
  143.   break;
  144. default:
  145.   printf ("?? getopt returned character code 0%o ??n", c);
  146. }
  147.     }
  148.   if (optind < argc)
  149.     {
  150.       printf ("non-option ARGV-elements: ");
  151.       while (optind < argc)
  152. printf ("%s ", argv[optind++]);
  153.       printf ("n");
  154.     }
  155.   exit (0);
  156. }
  157. #endif /* TEST */
  158. /***************************/
  159. #endif /* HAVE_GETOPT_LONG */
  160. /***************************/