X-Git-Url: http://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=test%2Ffirstlast.c;h=0a8e5ee0a69491412cb46e8efe4074ba4a6498f6;hb=HEAD;hp=f639f4aaba06ae080049ba491888b6a1d4cd083a;hpb=dfaa1a3001fd447819f5edc2e523acc1a04f1440;p=ncurses.git diff --git a/test/firstlast.c b/test/firstlast.c index f639f4aa..c66c2b85 100644 --- a/test/firstlast.c +++ b/test/firstlast.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1998-2006,2009 Free Software Foundation, Inc. * + * Copyright 2020,2022 Thomas E. Dickey * + * Copyright 1998-2010,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 * @@ -29,7 +30,7 @@ * This test was written by Alexander V. Lukyanov to demonstrate difference * between ncurses 4.1 and SVR4 curses * - * $Id: firstlast.c,v 1.6 2009/07/15 23:29:46 tom Exp $ + * $Id: firstlast.c,v 1.10 2022/12/10 23:31:31 tom Exp $ */ #include @@ -40,6 +41,11 @@ fill(WINDOW *w, const char *str) const char *s; int x0 = -1, y0 = -1; int x1, y1; + int maxx, maxy, limit; + + getmaxyx(w, maxy, maxx); + wmove(w, 0, 0); + limit = maxy * maxx; for (;;) { for (s = str; *s; s++) { @@ -49,17 +55,61 @@ fill(WINDOW *w, const char *str) wmove(w, 0, 0); return; } + /* waddch() should return ERR at the lower-right corner */ + if (--limit < 0) { + beep(); + if (*str == '?') + return; + napms(500); + wmove(w, maxy - 1, 0); + str = "?"; + limit = maxx + 1; + } x0 = x1; y0 = y1; } } } +static void +usage(int ok) +{ + static const char *msg[] = + { + "Usage: firstlast [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[]) { WINDOW *large, *small; + 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(); noecho(); @@ -73,14 +123,14 @@ main(int argc GCC_UNUSED, wrefresh(large); wrefresh(small); - mvwaddstr(small, 5, 5, " Test String "); + MvWAddStr(small, 5, 5, " Test String "); wrefresh(small); getch(); touchwin(large); wrefresh(large); - mvwaddstr(small, 5, 5, " Test <***************> String "); + MvWAddStr(small, 5, 5, " Test <***************> String "); wrefresh(small); /* DIFFERENCE! */