build.priv.h revision 262617
1/****************************************************************************
2 * Copyright (c) 2010 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                        2010                    *
31 ****************************************************************************/
32
33
34/*
35 * $Id: build.priv.h,v 1.6 2010/05/22 20:30:35 tom Exp $
36 *
37 *	build.priv.h
38 *
39 *	This is a reduced version of curses.priv.h, for build-time utilties.
40 *	Because it has fewer dependencies, this simplifies cross-compiling.
41 *
42 */
43
44#ifndef CURSES_PRIV_H
45#define CURSES_PRIV_H 1
46
47#include <ncurses_dll.h>
48
49#ifdef __cplusplus
50extern "C" {
51#endif
52
53#include <ncurses_cfg.h>
54
55#if USE_RCS_IDS
56#define MODULE_ID(id) static const char Ident[] = id;
57#else
58#define MODULE_ID(id) /*nothing*/
59#endif
60
61#include <stdlib.h>
62#include <string.h>
63#include <sys/types.h>
64
65#include <assert.h>
66#include <stdio.h>
67
68#include <errno.h>
69
70#include <curses.h>	/* we'll use -Ipath directive to get the right one! */
71
72/* usually in <unistd.h> */
73#ifndef EXIT_SUCCESS
74#define EXIT_SUCCESS 0
75#endif
76
77#ifndef EXIT_FAILURE
78#define EXIT_FAILURE 1
79#endif
80
81#define FreeAndNull(p)   free(p); p = 0
82#define UChar(c)         ((unsigned char)(c))
83#define SIZEOF(v)        (sizeof(v) / sizeof(v[0]))
84
85#include <nc_alloc.h>
86
87/* declare these, to avoid needing term.h */
88#if BROKEN_LINKER || USE_REENTRANT
89#define NCURSES_ARRAY(name) \
90	NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, name)
91
92NCURSES_ARRAY(boolnames);
93NCURSES_ARRAY(boolfnames);
94NCURSES_ARRAY(numnames);
95NCURSES_ARRAY(numfnames);
96NCURSES_ARRAY(strnames);
97NCURSES_ARRAY(strfnames);
98#endif
99
100#if NO_LEAKS
101NCURSES_EXPORT(void) _nc_names_leaks(void);
102#endif
103
104#ifdef __cplusplus
105}
106#endif
107
108#endif /* CURSES_PRIV_H */
109