Assume C89, so PARAMS isn't needed.
[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 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 # ifndef __attribute__
26 #  if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
27 #   define __attribute__(x)
28 #  endif
29 # endif
30
31 # ifndef ATTRIBUTE_NORETURN
32 #  define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
33 # endif
34
35 /* Exit value when the requested amount of memory is not available.
36    It is initialized to EXIT_FAILURE, but the caller may set it to
37    some other value.  */
38 extern int xalloc_exit_failure;
39
40 /* If this pointer is non-zero, run the specified function upon each
41    allocation failure.  It is initialized to zero. */
42 extern void (*xalloc_fail_func) (void);
43
44 /* If XALLOC_FAIL_FUNC is undefined or a function that returns, this
45    message is output.  It is translated via gettext.
46    Its value is "memory exhausted".  */
47 extern char const xalloc_msg_memory_exhausted[];
48
49 /* This function is always triggered when memory is exhausted.  It is
50    in charge of honoring the three previous items.  This is the
51    function to call when one wants the program to die because of a
52    memory allocation failure.  */
53 extern void xalloc_die (void) ATTRIBUTE_NORETURN;
54
55 void *xmalloc (size_t n);
56 void *xcalloc (size_t n, size_t s);
57 void *xrealloc (void *p, size_t n);
58 char *xstrdup (const char *str);
59
60 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
61 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items)))
62 # define XREALLOC(Ptr, Type, N_items) \
63   ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
64
65 /* Declare and alloc memory for VAR of type TYPE. */
66 # define NEW(Type, Var)  Type *(Var) = XMALLOC (Type, 1)
67
68 /* Free VAR only if non NULL. */
69 # define XFREE(Var)     \
70    do {                 \
71       if (Var)          \
72         free (Var);     \
73    } while (0)
74
75 /* Return a pointer to a malloc'ed copy of the array SRC of NUM elements. */
76 # define CCLONE(Src, Num) \
77   (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
78
79 /* Return a malloc'ed copy of SRC. */
80 # define CLONE(Src) CCLONE (Src, 1)
81
82
83 #endif /* !XALLOC_H_ */