]> ncurses.scripts.mit.edu Git - ncurses.git/blob - progs/progs.priv.h
fb5a84760733940511a27d3f02e32e7467e3ea2c
[ncurses.git] / progs / progs.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> 1997,1998                   *
31  ****************************************************************************/
32 /*
33  * $Id: progs.priv.h,v 1.17 1998/02/11 12:14:03 tom Exp $
34  *
35  *      progs.priv.h
36  *
37  *      Header file for curses utility programs
38  */
39
40 #include <ncurses_cfg.h>
41
42 #ifdef USE_RCS_IDS
43 #define MODULE_ID(id) static const char Ident[] = id;
44 #else
45 #define MODULE_ID(id) /*nothing*/
46 #endif
47
48 #include <stdlib.h>
49 #include <ctype.h>
50 #include <string.h>
51 #include <sys/types.h>
52
53 #if HAVE_UNISTD_H
54 #include <unistd.h>
55 #else
56 # if HAVE_LIBC_H
57 # include <libc.h>
58 # endif
59 #endif
60
61 #if HAVE_SYS_BSDTYPES_H
62 #include <sys/bsdtypes.h>       /* needed for ISC */
63 #endif
64
65 #if HAVE_LIMITS_H
66 # include <limits.h>
67 #elif HAVE_SYS_PARAM_H
68 # include <sys/param.h>
69 #endif
70
71 #ifndef PATH_MAX
72 # if defined(_POSIX_PATH_MAX)
73 #  define PATH_MAX _POSIX_PATH_MAX
74 # elif defined(MAXPATHLEN)
75 #  define PATH_MAX MAXPATHLEN
76 # else
77 #  define PATH_MAX 255  /* the Posix minimum pathsize */
78 # endif
79 #endif
80
81 #if HAVE_DIRENT_H
82 # include <dirent.h>
83 # define NAMLEN(dirent) strlen((dirent)->d_name)
84 #else
85 # define dirent direct
86 # define NAMLEN(dirent) (dirent)->d_namlen
87 # if HAVE_SYS_NDIR_H
88 #  include <sys/ndir.h>
89 # endif
90 # if HAVE_SYS_DIR_H
91 #  include <sys/dir.h>
92 # endif
93 # if HAVE_NDIR_H
94 #  include <ndir.h>
95 # endif
96 #endif
97
98 #include <errno.h>
99
100 #if DECL_ERRNO
101 extern int errno;
102 #endif
103
104 #if HAVE_GETOPT_H
105 #include <getopt.h>
106 #else
107 /* 'getopt()' may be prototyped in <stdlib.h>, but declaring its
108  * variables doesn't hurt.
109  */
110 extern char *optarg;
111 extern int optind;
112 #endif /* HAVE_GETOPT_H */
113
114 #include <curses.h>
115 #include <term.h>
116 #include <tic.h>
117 #include <nc_alloc.h>
118
119 /* usually in <unistd.h> */
120 #ifndef STDOUT_FILENO
121 #define STDOUT_FILENO 1
122 #endif
123
124 #ifndef STDERR_FILENO
125 #define STDERR_FILENO 2
126 #endif
127
128 #ifndef EXIT_SUCCESS
129 #define EXIT_SUCCESS 0
130 #endif
131
132 #ifndef EXIT_FAILURE
133 #define EXIT_FAILURE 1
134 #endif
135
136 #ifndef F_OK
137 #define F_OK    0               /* Test for existence.  */
138 #endif
139
140 /* usually in <unistd.h> */
141 #ifndef STDOUT_FILENO
142 #define STDOUT_FILENO 1
143 #endif
144
145 #ifndef STDERR_FILENO
146 #define STDERR_FILENO 2
147 #endif
148
149 /* We use isascii only to guard against use of 7-bit ctype tables in the
150  * isprint test in infocmp.
151  */
152 #ifndef HAVE_ISASCII
153 # undef isascii
154 # if ('z'-'a' == 25) && ('z' < 127) && ('Z'-'A' == 25) && ('Z' < 127) && ('9' < 127)
155 #  define isascii(c) (((c) & 0xff) <= 127)
156 # else
157 #  define isascii(c) 1  /* not really ascii anyway */
158 # endif
159 #endif