getopt1.c (n2n-3.0) | : | getopt1.c (n2n-3.1.1) | ||
---|---|---|---|---|
/** | ||||
* (C) 2007-22 - ntop.org and contributors | ||||
* | ||||
* This program is free software; you can redistribute it and/or modify | ||||
* it under the terms of the GNU General Public License as published by | ||||
* the Free Software Foundation; either version 3 of the License, or | ||||
* (at your option) any later version. | ||||
* | ||||
* This program is distributed in the hope that it will be useful, | ||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
* GNU General Public License for more details. | ||||
* | ||||
* You should have received a copy of the GNU General Public License | ||||
* along with this program; if not see see <http://www.gnu.org/licenses/> | ||||
* | ||||
*/ | ||||
/* getopt_long and getopt_long_only entry points for GNU getopt. | /* getopt_long and getopt_long_only entry points for GNU getopt. | |||
Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98 | Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98 | |||
Free Software Foundation, Inc. | Free Software Foundation, Inc. | |||
This file is part of the GNU C Library. | This file is part of the GNU C Library. | |||
The GNU C Library is free software; you can redistribute it and/or | The GNU C Library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public License as | modify it under the terms of the GNU Library General Public License as | |||
published by the Free Software Foundation; either version 2 of the | published by the Free Software Foundation; either version 2 of the | |||
License, or (at your option) any later version. | License, or (at your option) any later version. | |||
The GNU C Library is distributed in the hope that it will be useful, | The GNU C Library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | Library General Public License for more details. | |||
You should have received a copy of the GNU Library General Public | You should have received a copy of the GNU Library General Public | |||
License along with the GNU C Library; see the file COPYING.LIB. If not, | License along with the GNU C Library; see the file COPYING.LIB. If not, | |||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |||
Boston, MA 02111-1307, USA. */ | Boston, MA 02111-1307, USA. */ | |||
#ifdef HAVE_CONFIG_H | #ifdef HAVE_CONFIG_H | |||
#include <config.h> | #include <config.h> | |||
#endif | #endif | |||
#include "getopt.h" | #include "getopt.h" | |||
#if !defined __STDC__ || !__STDC__ | #if !defined __STDC__ || !__STDC__ | |||
/* This is a separate conditional since some stdc systems | /* This is a separate conditional since some stdc systems | |||
reject `defined (const)'. */ | reject `defined (const)'. */ | |||
#ifndef const | #ifndef const | |||
skipping to change at line 92 | skipping to change at line 111 | |||
int argc; | int argc; | |||
char *const *argv; | char *const *argv; | |||
const char *options; | const char *options; | |||
const struct option *long_options; | const struct option *long_options; | |||
int *opt_index; | int *opt_index; | |||
{ | { | |||
return _getopt_internal (argc, argv, options, long_options, opt_index, 1); | return _getopt_internal (argc, argv, options, long_options, opt_index, 1); | |||
} | } | |||
#endif /* Not ELIDE_CODE. */ | #endif /* Not ELIDE_CODE. */ | |||
#ifdef TEST | #ifdef TEST | |||
#include <stdio.h> | #include <stdio.h> | |||
int | int | |||
main (argc, argv) | main (argc, argv) | |||
int argc; | int argc; | |||
char **argv; | char **argv; | |||
{ | { | |||
int c; | int c; | |||
End of changes. 3 change blocks. | ||||
0 lines changed or deleted | 20 lines changed or added |