diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2009-02-02 06:12:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-31 17:03:40 -0700 |
commit | 451bb210f81c10b60bf90403c9183be26beaaabf (patch) | |
tree | 7f65acf1d82dac05446baea45684349cfaa3874a /parse-options.h | |
parent | bebdd271ff660d603ad75fef346ad1ff19fca0cb (diff) | |
download | git-451bb210f81c10b60bf90403c9183be26beaaabf.tar.gz |
parse-options: add new function "usage_msg_opt"
This function can be used instead of "usage_with_options" when you
want to print an error message before the usage string.
It may be useful because:
if (condition)
usage_msg_opt("condition is false", usage, opts);
is shorter than:
if (condition) {
fprintf(stderr, "condition is false\n\n");
usage_with_options(usage, opts);
}
and may be more consistent.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options.h')
-rw-r--r-- | parse-options.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/parse-options.h b/parse-options.h index b374ade95c..f0f885c67d 100644 --- a/parse-options.h +++ b/parse-options.h @@ -132,6 +132,10 @@ extern int parse_options(int argc, const char **argv, const char *prefix, extern NORETURN void usage_with_options(const char * const *usagestr, const struct option *options); +extern NORETURN void usage_msg_opt(const char *msg, + const char * const *usagestr, + const struct option *options); + /*----- incremental advanced APIs -----*/ enum { |