]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/test.priv.h
ncurses 5.0
[ncurses.git] / test / test.priv.h
1 /****************************************************************************
2  * Copyright (c) 1998 Free Software Foundation, Inc.                        *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Thomas E. Dickey <dickey@clark.net> 1996                        *
31  ****************************************************************************/
32 /* $Id: test.priv.h,v 1.15 1998/02/11 12:14:04 tom Exp $ */
33 #if HAVE_CONFIG_H
34 #include <ncurses_cfg.h>
35 #endif
36
37 #include <stdlib.h>
38 #include <sys/types.h>
39
40 #if HAVE_UNISTD_H
41 #include <unistd.h>
42 #endif
43
44 #include <curses.h>
45
46 #ifdef NCURSES_NOMACROS
47 #include <nomacros.h>
48 #endif
49
50 #if HAVE_GETOPT_H
51 #include <getopt.h>
52 #else
53 /* 'getopt()' may be prototyped in <stdlib.h>, but declaring its variables
54  * doesn't hurt.
55  */
56 extern char *optarg;
57 extern int optind;
58 #endif /* HAVE_GETOPT_H */
59
60 #ifndef GCC_NORETURN
61 #define GCC_NORETURN /* nothing */
62 #endif
63 #ifndef GCC_UNUSED
64 #define GCC_UNUSED /* nothing */
65 #endif
66
67 #define SIZEOF(table)   (sizeof(table)/sizeof(table[0]))
68
69 #if defined(NCURSES_VERSION) && HAVE_NC_ALLOC_H
70 #include <nc_alloc.h>
71 #endif
72
73 #ifndef ExitProgram
74 #define ExitProgram(code) return code
75 #endif
76
77 #ifndef EXIT_SUCCESS
78 #define EXIT_SUCCESS 0
79 #endif
80 #ifndef EXIT_FAILURE
81 #define EXIT_FAILURE 1
82 #endif
83
84 /* Use this to quiet gcc's -Wwrite-strings warnings, but accommodate SVr4
85  * curses which doesn't have const parameters declared (so far) in the places
86  * that XSI shows.
87  */
88 #ifndef NCURSES_CONST
89 #define NCURSES_CONST /* nothing */
90 #endif