]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/clip_printw.c
ncurses 6.3 - patch 20221210
[ncurses.git] / test / clip_printw.c
index ed254a1fe686e32fdc63c31b7747efe8551a9d42..49d67c53741fbc5b84581943d5ccef3dd4831e7c 100644 (file)
@@ -27,7 +27,7 @@
  * authorization.                                                           *
  ****************************************************************************/
 /*
- * $Id: clip_printw.c,v 1.20 2022/04/16 18:26:05 tom Exp $
+ * $Id: clip_printw.c,v 1.21 2022/12/10 23:31:31 tom Exp $
  *
  * demonstrate how to use printw without wrapping.
  */
@@ -358,9 +358,44 @@ test_clipping(WINDOW *win)
     } while ((st.ch = wgetch(win)) != ERR);
 }
 
+static void
+usage(int ok)
+{
+    static const char *msg[] =
+    {
+       "Usage: clip_printw [options]"
+       ,""
+       ,USAGE_COMMON
+    };
+    size_t n;
+
+    for (n = 0; n < SIZEOF(msg); n++)
+       fprintf(stderr, "%s\n", msg[n]);
+
+    ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
+}
+/* *INDENT-OFF* */
+VERSION_COMMON()
+/* *INDENT-ON* */
+
 int
-main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
+main(int argc, char *argv[])
 {
+    int ch;
+
+    while ((ch = getopt(argc, argv, OPTS_COMMON)) != -1) {
+       switch (ch) {
+       case OPTS_VERSION:
+           show_version(argv);
+           ExitProgram(EXIT_SUCCESS);
+       default:
+           usage(ch == OPTS_USAGE);
+           /* NOTREACHED */
+       }
+    }
+    if (optind < argc)
+       usage(FALSE);
+
     setlocale(LC_ALL, "");
     initscr();
     cbreak();