X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Frailroad.c;h=72ff8670d07857c1a94b042a0b217d4edcb6cb7f;hp=91117b918fa39abbc7555614923f499f6b26982e;hb=26522e4669dbf45cba32138b5d81c6c292e88e60;hpb=a8987e73ec254703634802b4f7ee30d3a485524d diff --git a/test/railroad.c b/test/railroad.c index 91117b91..72ff8670 100644 --- a/test/railroad.c +++ b/test/railroad.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2000-2001,2002 Free Software Foundation, Inc. * + * Copyright (c) 2000-2007,2008 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 * @@ -27,14 +27,17 @@ ****************************************************************************/ /* - * Author: Thomas E. Dickey 2000 + * Author: Thomas E. Dickey - 2000 * - * $Id: railroad.c,v 1.11 2002/10/19 22:11:24 tom Exp $ + * $Id: railroad.c,v 1.17 2008/12/07 02:07:41 juergen Exp $ * * A simple demo of the termcap interface. */ +#define USE_TINFO #include +#if HAVE_TGETENT + static char *wipeit; static char *moveit; static int length; @@ -53,7 +56,7 @@ static char *backup; static bool interrupted = FALSE; static int -outc(int c) +outc(TPUTS_ARG c) { if (interrupted) { char tmp = c; @@ -79,7 +82,7 @@ Backup(void) } static void -ShowCursor(int flag) +MyShowCursor(int flag) { if (startC != 0 && finisC != 0) { tputs(flag ? startC : finisC, 1, outc); @@ -163,7 +166,7 @@ cleanup(void) { Underline(0); StandOut(0); - ShowCursor(1); + MyShowCursor(1); } static void @@ -180,11 +183,10 @@ railroad(char **args) NCURSES_CONST char *name = getenv("TERM"); char buffer[1024]; char area[1024], *ap = area; - int j; if (name == 0) name = "dumb"; - if (tgetent(buffer, name)) { + if (tgetent(buffer, name) >= 0) { wipeit = tgetstr("ce", &ap); height = tgetnum("li"); @@ -212,16 +214,14 @@ railroad(char **args) startC = tgetstr("ve", &ap); finisC = tgetstr("vi", &ap); - ShowCursor(0); + MyShowCursor(0); - for (j = SIGHUP; j <= SIGTERM; j++) - if (signal(j, SIG_IGN) != SIG_IGN) - signal(j, onsig); + CATCHALL(onsig); while (*args) { ShowSign(*args++); } - ShowCursor(1); + MyShowCursor(1); } } @@ -238,3 +238,13 @@ main(int argc, char *argv[]) } ExitProgram(EXIT_SUCCESS); } + +#else +int +main(int argc GCC_UNUSED, + char *argv[]GCC_UNUSED) +{ + printf("This program requires termcap\n"); + exit(EXIT_FAILURE); +} +#endif