]> ncurses.scripts.mit.edu Git - ncurses.git/blob - include/nc_alloc.h
c24c8a36e934282b89e05b73c1cc4946e7fa3613
[ncurses.git] / include / nc_alloc.h
1 /****************************************************************************
2  * Copyright (c) 1998-2017,2019 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                    1996-on                     *
31  ****************************************************************************/
32 /* $Id: nc_alloc.h,v 1.24 2019/12/15 01:00:51 tom Exp $ */
33
34 #ifndef NC_ALLOC_included
35 #define NC_ALLOC_included 1
36 /* *INDENT-OFF* */
37
38 #include <ncurses_cfg.h>
39 #include <curses.h>
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif
44
45 #if defined(HAVE_LIBDMALLOC) && HAVE_LIBDMALLOC
46 #include <string.h>
47 #undef strndup          /* workaround for #define in GLIBC 2.7 */
48 #include <dmalloc.h>    /* Gray Watson's library */
49 #else
50 #undef  HAVE_LIBDMALLOC
51 #define HAVE_LIBDMALLOC 0
52 #endif
53
54 #if defined(HAVE_LIBDBMALLOC) && HAVE_LIBDBMALLOC
55 #include <dbmalloc.h>   /* Conor Cahill's library */
56 #else
57 #undef  HAVE_LIBDBMALLOC
58 #define HAVE_LIBDBMALLOC 0
59 #endif
60
61 #if defined(HAVE_LIBMPATROL) && HAVE_LIBMPATROL
62 #include <mpatrol.h>    /* Memory-Patrol library */
63 #else
64 #undef  HAVE_LIBMPATROL
65 #define HAVE_LIBMPATROL 0
66 #endif
67
68 #ifndef NO_LEAKS
69 #define NO_LEAKS 0
70 #endif
71
72 #if HAVE_LIBDBMALLOC || HAVE_LIBDMALLOC || NO_LEAKS
73 #define HAVE_NC_FREEALL 1
74 struct termtype;
75 extern NCURSES_EXPORT(void) _nc_free_tinfo(int) GCC_NORETURN GCC_DEPRECATED("use exit_terminfo");
76
77 #ifdef NCURSES_INTERNALS
78 extern NCURSES_EXPORT(void) _nc_free_tic(int) GCC_NORETURN;
79 extern NCURSES_EXPORT(void) _nc_free_tparm(void);
80 extern NCURSES_EXPORT(void) _nc_leaks_dump_entry(void);
81 extern NCURSES_EXPORT(void) _nc_leaks_tic(void);
82
83 #if NCURSES_SP_FUNCS
84 extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int) GCC_NORETURN;
85 #endif
86 extern NCURSES_EXPORT(void) _nc_free_and_exit(int) GCC_NORETURN;
87
88 #else /* !NCURSES_INTERNALS */
89 extern NCURSES_EXPORT(void) _nc_free_and_exit(int) GCC_NORETURN GCC_DEPRECATED("use exit_curses");
90 #endif
91
92 #define ExitProgram(code) exit_curses(code)
93
94 #endif /* NO_LEAKS, etc */
95
96 #ifndef HAVE_NC_FREEALL
97 #define HAVE_NC_FREEALL 0
98 #endif
99
100 #ifndef ExitProgram
101 #define ExitProgram(code) exit(code)
102 #endif
103
104 /* doalloc.c */
105 extern NCURSES_EXPORT(void *) _nc_doalloc(void *, size_t);
106 #if !HAVE_STRDUP
107 #undef strdup
108 #define strdup _nc_strdup
109 extern NCURSES_EXPORT(char *) _nc_strdup(const char *);
110 #endif
111
112 /* entries.c */
113 extern NCURSES_EXPORT(void) _nc_leaks_tinfo(void);
114
115 #define typeMalloc(type,elts) (type *)malloc((size_t)(elts)*sizeof(type))
116 #define typeCalloc(type,elts) (type *)calloc((size_t)(elts),sizeof(type))
117 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (size_t)(elts)*sizeof(type))
118
119 #ifdef __cplusplus
120 }
121 #endif
122
123 /* *INDENT-ON* */
124
125 #endif /* NC_ALLOC_included */