summaryrefslogtreecommitdiff
path: root/libshouldbeinlibc/argp-parse.c
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-06-17 02:36:36 +0000
committerMiles Bader <miles@gnu.org>1996-06-17 02:36:36 +0000
commit209a0fe1715efbc609d374d356ec7ec0f755534d (patch)
tree971c87ba434b0863139e69e208114a7d0dcf2025 /libshouldbeinlibc/argp-parse.c
parent50a368624359bcbbe3b15a3aa423d89915af2564 (diff)
(argp_default_parser): Output to STATE->out_stream.
(argp_parse): Initialize new fields in STATE. Output errors to STATE.err_stream.
Diffstat (limited to 'libshouldbeinlibc/argp-parse.c')
-rw-r--r--libshouldbeinlibc/argp-parse.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/libshouldbeinlibc/argp-parse.c b/libshouldbeinlibc/argp-parse.c
index 6eabb4b6..28bb9561 100644
--- a/libshouldbeinlibc/argp-parse.c
+++ b/libshouldbeinlibc/argp-parse.c
@@ -77,10 +77,11 @@ argp_default_parser (int key, char *arg, struct argp_state *state)
switch (key)
{
case '?':
- argp_state_help (state, stdout, ARGP_HELP_STD_HELP);
+ argp_state_help (state, state->out_stream, ARGP_HELP_STD_HELP);
break;
case OPT_USAGE:
- argp_state_help (state, stdout, ARGP_HELP_USAGE | ARGP_HELP_EXIT_OK);
+ argp_state_help (state, state->out_stream,
+ ARGP_HELP_USAGE | ARGP_HELP_EXIT_OK);
break;
case OPT_PROGNAME: /* Set the program name. */
@@ -237,7 +238,8 @@ argp_parse (const struct argp *argp, int argc, char **argv, unsigned flags,
/* An vector containing storage for the CHILD_INPUTS field in all groups. */
void **child_inputs;
/* State block supplied to parsing routines. */
- struct argp_state state = { argp, argc, argv, 0, flags, 0, 0, 0, 0, 0 };
+ struct argp_state state =
+ { argp, argc, argv, 0, flags, err_stream: stderr, out_stream: stdout };
/* Call GROUP's parser with KEY and ARG, swapping any group-specific info
from STATE before calling, and back into state afterwards. If GROUP has
@@ -528,6 +530,12 @@ argp_parse (const struct argp *argp, int argc, char **argv, unsigned flags,
else
opterr = 1; /* Print error messages. */
+ if (state.argv == argv && argv[0])
+ /* There's an argv[0]; use it for messages. */
+ state.name = argv[0];
+ else
+ state.name = program_invocation_name;
+
/* Now use getopt on our coalesced options lists. */
while (! err)
{
@@ -613,8 +621,7 @@ argp_parse (const struct argp *argp, int argc, char **argv, unsigned flags,
/* No way to return the remaining arguments, they must be bogus. */
{
if (! (state.flags & ARGP_NO_ERRS))
- fprintf (stderr, "%s: Too many arguments\n",
- program_invocation_name);
+ fprintf (state.err_stream, "%s: Too many arguments\n", state.name);
err = EBADKEY;
}
@@ -625,7 +632,7 @@ argp_parse (const struct argp *argp, int argc, char **argv, unsigned flags,
{
/* Maybe print an error message. */
if (err == EBADKEY)
- argp_state_help (&state, stderr, ARGP_HELP_STD_ERR);
+ argp_state_help (&state, state.err_stream, ARGP_HELP_STD_ERR);
/* Since we didn't exit, give each parser an error indication. */
for (group = groups; group < egroup; group++)