X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fargmatch.h;h=d3f25cc3331c41f0623d10a6e733258f153cd0b7;hb=c3c259f0bef8cfd8d47606475348f088f7b0e120;hp=1cca39f60282e1f6675fb02a68e282ee9f9c01a1;hpb=d95dbb37fe04a4f3e608d21e310bcd36a4812584;p=gnulib.git diff --git a/lib/argmatch.h b/lib/argmatch.h index 1cca39f60..d3f25cc33 100644 --- a/lib/argmatch.h +++ b/lib/argmatch.h @@ -35,6 +35,17 @@ # endif /* GCC. */ # endif /* Not PARAMS. */ +/* Assert there are as many real arguments as there are values + (argument list ends with a NULL guard). There is no execution + cost, since it will be statically evalauted to `assert (0)' or + `assert (1)'. Unfortunately there is no -Wassert-0. */ + +# undef ARRAY_CARDINALITY +# define ARRAY_CARDINALITY(Array) (sizeof ((Array)) / sizeof (*(Array))) + +# define ARGMATCH_ASSERT(Arglist, Vallist) \ + assert (ARRAY_CARDINALITY ((Arglist)) == ARRAY_CARDINALITY ((Vallist)) + 1) + /* Return the index of the element of ARGLIST (NULL terminated) that matches with ARG. If VALLIST is not NULL, then use it to resolve false ambiguities (i.e., different matches of ARG but corresponding