summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-08 15:15:32 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-02-09 11:58:28 -0800
commitaee575262a9c70fe537bc1cda72c1b00931f87b0 (patch)
tree705fceedb92b9470c1de2253536af5235e9678fa
parent3f09f6c5771cfc70ab73ce301da683c3884cabd1 (diff)
Add -help and -version options
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--listres.c33
-rw-r--r--man/listres.man6
2 files changed, 34 insertions, 5 deletions
diff --git a/listres.c b/listres.c
index 2b73181..7f7a0c5 100644
--- a/listres.c
+++ b/listres.c
@@ -29,6 +29,10 @@ in this Software without prior written authorization from the X Consortium.
*/
/* $XFree86: xc/programs/listres/listres.c,v 1.3 2000/02/17 14:00:32 dawes Exp $ */
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <X11/Xos.h>
@@ -83,7 +87,7 @@ static XtResource Resources[] = {
static const char *ProgramName;
static void
-usage (void)
+usage (int exitval)
{
fprintf(stderr, "usage: %s [-options...]\n%s\n", ProgramName,
"\nwhere options include:\n"
@@ -92,8 +96,11 @@ usage (void)
" -nosuper do not print superclass resources\n"
" -variable show variable name instead of class name\n"
" -top name object to be top of tree\n"
- " -format string printf format for instance, class, type\n");
- exit (1);
+ " -format string printf format for instance, class, type\n"
+ " -help print this message and exit\n"
+ " -version print version info and exit\n"
+ );
+ exit (exitval);
}
static void print_tree_level (register XmuWidgetNode *wn, register int level)
@@ -234,6 +241,22 @@ main (int argc, char **argv)
XtSetLanguageProc(NULL, (XtLanguageProc) NULL, NULL);
+ /* Handle args that don't require opening a display */
+ for (int n = 1; n < argc; n++) {
+ const char *argn = argv[n];
+ /* accept single or double dash for -help & -version */
+ if (argn[0] == '-' && argn[1] == '-') {
+ argn++;
+ }
+ if (strcmp(argn, "-help") == 0) {
+ usage(0);
+ }
+ if (strcmp(argn, "-version") == 0) {
+ puts(PACKAGE_STRING);
+ exit(0);
+ }
+ }
+
toplevel = XtAppInitialize (&appcon, "Listres", Options, XtNumber(Options),
&argc, argv, NULL, NULL, 0);
container = XtCreateWidget ("dummy", widgetClass, toplevel, NULL, ZERO);
@@ -264,7 +287,7 @@ main (int argc, char **argv)
}
} else {
fprintf(stderr, "Unknown argument: %s\n", argv[0]);
- usage();
+ usage(1);
}
} else {
for (; argc > 0; argc--, argv++) {
@@ -272,7 +295,7 @@ main (int argc, char **argv)
if (argv[0][0] == '-') {
fprintf(stderr, "Unknown argument: %s\n", argv[0]);
- usage();
+ usage(1);
}
node = XmuWnNameToNode (widget_list, nwidgets, *argv);
if (!node) {
diff --git a/man/listres.man b/man/listres.man
index d5c6d25..ac0522f 100644
--- a/man/listres.man
+++ b/man/listres.man
@@ -67,6 +67,12 @@ variable name or the class name. The default is ``core''.
.B \-format \fIprintf\-string\fP
This option specifies the \fIprintf\fP-style format string to be used to print
out the name, instance, class, and type of each resource.
+.TP 8
+.B \-help
+This option indicates that \fIlistres\fP should print a usage message and exit.
+.TP 8
+.B \-version
+This option indicates that \fIlistres\fP should print version info and exit.
.SH "X DEFAULTS"
To be written.
.SH "SEE ALSO"