Merge branch 'cc/test-ref-store-typofix'
[gitweb.git] / parse-options.h
index bd88f6424a9033af6660e1138f9d336f572acc64..14fe32428e57aee0716517219e3fc925ac5e8a0d 100644 (file)
@@ -186,10 +186,7 @@ extern NORETURN void usage_msg_opt(const char *msg,
                                   const struct option *options);
 
 extern int optbug(const struct option *opt, const char *reason);
-extern int opterror(const struct option *opt, const char *reason, int flags);
-#if defined(__GNUC__)
-#define opterror(o,r,f) (opterror((o),(r),(f)), const_error())
-#endif
+const char *optname(const struct option *opt, int flags);
 
 /*
  * Use these assertions for callbacks that expect to be called with NONEG and
@@ -208,6 +205,7 @@ extern int opterror(const struct option *opt, const char *reason, int flags);
 /*----- incremental advanced APIs -----*/
 
 enum {
+       PARSE_OPT_COMPLETE = -2,
        PARSE_OPT_HELP = -1,
        PARSE_OPT_DONE,
        PARSE_OPT_NON_OPTION,