1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-13 23:36:10 +02:00
Files
coreutils/lib/long-options.h

36 lines
1.2 KiB
C
Raw Normal View History

1996-10-17 03:01:19 +00:00
/* long-options.h -- declaration for --help- and --version-handling function.
Copyright (C) 1993, 1994, 1998, 1999 Free Software Foundation, Inc.
1996-10-17 03:01:19 +00:00
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 2, 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, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/* Written by Jim Meyering. */
1997-12-21 11:22:51 +00:00
#ifndef PARAMS
# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define PARAMS(Args) Args
# else
# define PARAMS(Args) ()
# endif
1995-03-12 18:06:08 +00:00
#endif
1994-10-02 22:50:11 +00:00
void
1999-03-04 05:08:21 +00:00
parse_long_options PARAMS ((int _argc,
char **_argv,
1996-10-17 02:59:09 +00:00
const char *_command_name,
const char *_package,
1999-03-04 05:08:21 +00:00
const char *_version,
const char *_authors,
void (*_usage) (int)));