1 /****************************************************************************
2 * Copyright (c) 1998-2014,2015 Free Software Foundation, Inc. *
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: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
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. *
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 *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Thomas E. Dickey 1997-on *
31 ****************************************************************************/
33 * $Id: progs.priv.h,v 1.41 2015/05/23 23:53:55 tom Exp $
37 * Header file for curses utility programs
41 #define PROGS_PRIV_H 1
43 #include <ncurses_cfg.h>
46 #define MODULE_ID(id) static const char Ident[] = id;
48 #define MODULE_ID(id) /*nothing */
54 #include <sys/types.h>
60 #if HAVE_SYS_BSDTYPES_H
61 #include <sys/bsdtypes.h> /* needed for ISC */
66 #elif HAVE_SYS_PARAM_H
67 # include <sys/param.h>
72 # define NAMLEN(dirent) strlen((dirent)->d_name)
73 # if defined(_FILE_OFFSET_BITS) && defined(HAVE_STRUCT_DIRENT64)
74 # if !defined(_LP64) && (_FILE_OFFSET_BITS == 64)
75 # define DIRENT struct dirent64
77 # define DIRENT struct dirent
80 # define DIRENT struct dirent
83 # define DIRENT struct direct
84 # define NAMLEN(dirent) (dirent)->d_namlen
86 # include <sys/ndir.h>
97 # include <inttypes.h>
113 #elif !defined(HAVE_GETOPT_HEADER)
114 /* 'getopt()' may be prototyped in <stdlib.h>, but declaring its
115 * variables doesn't hurt.
119 #endif /* HAVE_GETOPT_H */
122 #include <term_entry.h>
123 #include <nc_termios.h>
125 #include <nc_tparm.h>
127 #include <nc_string.h>
128 #include <nc_alloc.h>
132 #define ExitProgram(code) _nc_free_tinfo(code)
134 #define ExitProgram(code) _nc_free_tic(code)
138 #if defined(__GNUC__) && defined(_FORTIFY_SOURCE)
139 #define IGNORE_RC(func) errno = (int) func
141 #define IGNORE_RC(func) (void) func
142 #endif /* gcc workarounds */
144 /* usually in <unistd.h> */
145 #ifndef STDOUT_FILENO
146 #define STDOUT_FILENO 1
149 #ifndef STDERR_FILENO
150 #define STDERR_FILENO 2
154 #define EXIT_SUCCESS 0
158 #define EXIT_FAILURE 1
162 #define R_OK 4 /* Test for readable. */
166 #define W_OK 2 /* Test for writable. */
170 #define X_OK 1 /* Test for executable. */
174 #define F_OK 0 /* Test for existence. */
177 /* usually in <unistd.h> */
178 #ifndef STDOUT_FILENO
179 #define STDOUT_FILENO 1
182 #ifndef STDERR_FILENO
183 #define STDERR_FILENO 2
186 /* may be in limits.h, included from various places */
188 # if defined(_POSIX_PATH_MAX)
189 # define PATH_MAX _POSIX_PATH_MAX
190 # elif defined(MAXPATHLEN)
191 # define PATH_MAX MAXPATHLEN
193 # define PATH_MAX 255 /* the Posix minimum pathsize */
197 /* We use isascii only to guard against use of 7-bit ctype tables in the
198 * isprint test in infocmp.
202 # if ('z'-'a' == 25) && ('z' < 127) && ('Z'-'A' == 25) && ('Z' < 127) && ('9' < 127)
203 # define isascii(c) (UChar(c) <= 127)
205 # define isascii(c) 1 /* not really ascii anyway */
209 #define UChar(c) ((unsigned char)(c))
211 #define SIZEOF(v) (sizeof(v)/sizeof(v[0]))
213 #endif /* PROGS_PRIV_H */