Add extern "C" for C++.
[gnulib.git] / lib / xalloc.h
1 /* xalloc.h -- malloc with out-of-memory checking
2
3    Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4    1999, 2000, 2003, 2004 Free Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 #ifndef XALLOC_H_
21 # define XALLOC_H_
22
23 # include <stddef.h>
24
25
26 # ifdef __cplusplus
27 extern "C" {
28 # endif
29
30
31 # ifndef __attribute__
32 #  if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
33 #   define __attribute__(x)
34 #  endif
35 # endif
36
37 # ifndef ATTRIBUTE_NORETURN
38 #  define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
39 # endif
40
41
42 /* If this pointer is non-zero, run the specified function upon each
43    allocation failure.  It is initialized to zero. */
44 extern void (*xalloc_fail_func) (void);
45
46 /* If XALLOC_FAIL_FUNC is undefined or a function that returns, this
47    message is output.  It is translated via gettext.
48    Its value is "memory exhausted".  */
49 extern char const xalloc_msg_memory_exhausted[];
50
51 /* This function is always triggered when memory is exhausted.  It is
52    in charge of honoring the two previous items.  It exits with status
53    exit_failure (defined in exitfail.h).  This is the
54    function to call when one wants the program to die because of a
55    memory allocation failure.  */
56 extern void xalloc_die (void) ATTRIBUTE_NORETURN;
57
58 void *xmalloc (size_t s);
59 void *xnmalloc (size_t n, size_t s);
60 void *xzalloc (size_t s);
61 void *xcalloc (size_t n, size_t s);
62 void *xrealloc (void *p, size_t s);
63 void *xnrealloc (void *p, size_t n, size_t s);
64 void *x2realloc (void *p, size_t *pn);
65 void *x2nrealloc (void *p, size_t *pn, size_t s);
66 void *xclone (void const *p, size_t s);
67 char *xstrdup (const char *str);
68
69 /* Return 1 if an array of N objects, each of size S, cannot exist due
70    to size arithmetic overflow.  S must be positive and N must be
71    nonnegative.  This is a macro, not an inline function, so that it
72    works correctly even when SIZE_MAX < N.
73
74    By gnulib convention, SIZE_MAX represents overflow in size
75    calculations, so the conservative dividend to use here is
76    SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.
77    However, malloc (SIZE_MAX) fails on all known hosts where
78    sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for
79    exactly-SIZE_MAX allocations on such hosts; this avoids a test and
80    branch when S is known to be 1.  */
81 # define xalloc_oversized(n, s) \
82     ((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))
83
84 /* These macros are deprecated; they will go away soon, and are retained
85    temporarily only to ease conversion to the functions described above.  */
86 # define CCLONE(p, n) xclone (p, (n) * sizeof *(p))
87 # define CLONE(p) xclone (p, sizeof *(p))
88 # define NEW(type, var) type *var = xmalloc (sizeof (type))
89 # define XCALLOC(type, n) xcalloc (n, sizeof (type))
90 # define XMALLOC(type, n) xnmalloc (n, sizeof (type))
91 # define XREALLOC(p, type, n) xnrealloc (p, n, sizeof (type))
92 # define XFREE(p) free (p)
93
94
95 # ifdef __cplusplus
96 }
97 # endif
98
99
100 #endif /* !XALLOC_H_ */