mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-13 00:14:26 +02:00
13 lines
350 B
C
13 lines
350 B
C
/* argmatch.h -- declarations for matching arguments against option lists */
|
|
|
|
#if defined __STDC__ || __GNUC__
|
|
# define __ARGMATCH_P(args) args
|
|
#else
|
|
# define __ARGMATCH_P(args) ()
|
|
#endif
|
|
|
|
int argmatch __ARGMATCH_P ((const char *, const char * const *));
|
|
void invalid_arg __ARGMATCH_P ((const char *, const char *, int));
|
|
|
|
extern char *program_name;
|