X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Finsdelln.c;h=55e606aebe1312c472f181878cf359e76b325543;hp=95fd2bed318cf651b1405208e1d82aeaf5cb1df4;hb=HEAD;hpb=efa78d11c3ea7f51c7078b64a34c98b44ecb0e1a diff --git a/test/insdelln.c b/test/insdelln.c index 95fd2bed..52ccfb62 100644 --- a/test/insdelln.c +++ b/test/insdelln.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 2008-2017,2019 Free Software Foundation, Inc. * + * Copyright 2019-2020,2022 Thomas E. Dickey * + * Copyright 2008-2014,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -26,7 +27,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: insdelln.c,v 1.13 2019/08/24 23:11:01 tom Exp $ + * $Id: insdelln.c,v 1.15 2022/12/10 23:31:31 tom Exp $ * * test-driver for deleteln, wdeleteln, insdelln, winsdelln, insertln, winsertln */ @@ -370,9 +371,44 @@ test_insdelln(void) } while ((st.ch = getch()) != ERR); } +static void +usage(int ok) +{ + static const char *msg[] = + { + "Usage: insdelln [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); + initscr(); cbreak(); noecho();