X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fclip_printw.c;fp=test%2Fclip_printw.c;h=49d67c53741fbc5b84581943d5ccef3dd4831e7c;hp=ed254a1fe686e32fdc63c31b7747efe8551a9d42;hb=a09e8b13568e210a03ca4ad64e8552c0edea07c5;hpb=6641601a9dd7f34deeaa978899b3730b27635afb diff --git a/test/clip_printw.c b/test/clip_printw.c index ed254a1f..49d67c53 100644 --- a/test/clip_printw.c +++ b/test/clip_printw.c @@ -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();