X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fopt%2Fopt.h;h=65008091a0861ade804d06e8fc302bcf74a6aa51;hp=253d03c4098691988a8edf4ef4352d3b72931be5;hb=f4b1f445a7b21b1599530afb897ef54efe15479d;hpb=d89e5744f30b584ac4909ce1164af1289c41359b;ds=inline diff --git a/ccan/opt/opt.h b/ccan/opt/opt.h index 253d03c4..65008091 100644 --- a/ccan/opt/opt.h +++ b/ccan/opt/opt.h @@ -39,6 +39,10 @@ struct opt_table { * returned string to form an error message for errlog(), free() the * string and return false. * + * Any number of equivalent short or long options can be listed in @names, + * separated by '/'. Short options are a single hyphen followed by a single + * character, long options are two hypens followed by one or more characters. + * * See Also: * OPT_WITH_ARG() */ @@ -47,7 +51,7 @@ struct opt_table { /** * OPT_WITH_ARG() - macro for initializing long and short option (with arg) - * @names: the names of the option eg. "--foo", "-f" or "--foo/-f/--foobar". + * @names: the option names eg. "--foo=", "-f" or "-f/--foo ". * @cb: the callback when the option is found (along with ). * @show: the callback to print the value in get_usage (or NULL) * @arg: the argument to hand to @cb and @show @@ -63,6 +67,12 @@ struct opt_table { * argument; unless it uses the entire OPT_SHOW_LEN bytes it should * nul-terminate that buffer. * + * Any number of equivalent short or long options can be listed in @names, + * separated by '/'. Short options are a single hyphen followed by a single + * character, long options are two hypens followed by one or more characters. + * A space or equals in @names is ignored for parsing, and only used + * for printing the usage. + * * If the @cb returns non-NULL, opt_parse() will stop parsing, use the * returned string to form an error message for errlog(), free() the * string and return false.