white space changes
[gnulib.git] / lib / argmatch.h
1 /* argmatch.h -- definitions and prototypes for argmatch.c
2    Copyright (C) 1990, 1998 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
17
18 /* Written by David MacKenzie <djm@ai.mit.edu>
19    Modified by Akim Demaille <demaille@inf.enst.fr> */
20
21 #ifndef _ARGMATCH_H_
22 # define _ARGMATCH_H_ 1
23
24 # if HAVE_CONFIG_H
25 #  include <config.h>
26 # endif
27
28 # include <sys/types.h>
29
30 # ifndef PARAMS
31 #  if PROTOTYPES || (defined (__STDC__) && __STDC__)
32 #   define PARAMS(args) args
33 #  else
34 #   define PARAMS(args) ()
35 #  endif  /* GCC.  */
36 # endif  /* Not PARAMS.  */
37
38 /* Return the index of the element of ARGLIST (NULL terminated) that
39    matches with ARG.  If VALLIST is not NULL, then use it to resolve
40    false ambiguities (i.e., different matches of ARG but corresponding
41    to the same values in VALLIST).  */
42
43 int argmatch
44   PARAMS ((const char *arg, const char *const *arglist,
45            const char *vallist, size_t valsize));
46 int argcasematch
47   PARAMS ((const char *arg, const char *const *arglist,
48            const char *vallist, size_t valsize));
49
50 # define ARGMATCH(Arg, ARGLIST, Vallist) \
51   argmatch (Arg, Arglist, (const char *) Vallist, sizeof (*Vallist))
52
53 # define ARGCASEMATCH(Arg, Arglist, Vallist) \
54   argcasematch (Arg, Arglist, (const char *) Vallist, sizeof (*Vallist))
55
56
57
58 /* Report on stderr why argmatch failed.  Report correct values. */
59
60 void argmatch_invalid
61   PARAMS ((const char *kind, const char *value, int problem));
62
63 /* Left for compatibility with the old name invalid_arg */
64
65 # define invalid_arg(Kind, Value, Problem) \
66         argmatch_invalid (Kind, Value, Problem)
67
68
69
70 /* Report on stderr the list of possible arguments.  */
71
72 void argmatch_valid
73   PARAMS ((const char *const *arglist,
74            const char *vallist, size_t valsize));
75
76 # define ARGMATCH_VALID(Arglist, Vallist) \
77   valid_args (Arglist, (const char *) Vallist, sizeof (*Vallist))
78
79
80 /* Returns matches, or, upon error, report explanatory message and
81    exit.  */
82
83 int __xargmatch_internal
84   PARAMS ((const char *kind,
85            const char *arg, const char *const *arglist,
86            const char *vallist, size_t valsize,
87            int sensitive));
88
89 # define XARGMATCH(Kind, Arg, Arglist, Vallist) \
90   Vallist [__xargmatch_internal (Kind, Arg, Arglist, \
91                         (const char *) Vallist, sizeof (*Vallist), 1)]
92
93 # define XARGCASEMATCH(Kind, Arg, Arglist, Vallist) \
94   Vallist [__xargmatch_internal (Kind, Arg, Arglist, \
95                         (const char *) Vallist, sizeof (*Vallist), 0)]
96
97
98
99 /* Convert a value into a corresponding argument. */
100
101 const char *argmatch_to_argument
102   PARAMS ((char *value, const char *const *arglist,
103            const char *vallist, size_t valsize));
104
105 # define ARGMATCH_TO_ARGUMENT(Value, Arglist, Vallist)  \
106    argmatch_to_argument ((char *) &Value, Arglist,      \
107                          (const char *) Vallist, sizeof (*Vallist))
108
109 #endif /* _ARGMATCH_H_ */