Johannes Schindelin <johannes.schinde...@gmx.de> writes:

> Maybe something like instead?
>
>       static int one_of(const char *term, ...)
>       {
>               int res = 0;
>               va_list matches;
>               const char *match;
>
>               va_start(matches, term);
>               while (!res && (match = va_arg(matches, const char *)))
>                       res = !strcmp(term, match);
>               va_end(matches);
>
>               return res;
>       }
> Ciao,
> Dscho

This looks good (even though we try to avoid assignment in
conditionals as much as possible).

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to