Changed Safe_calloc to use 2 arguements to mimic teh standard calloc function
[fw/sdcc] / support / Util / newalloc.h
1 /*
2 ===============================================================================
3 NEWALLOC - SDCC Memory allocation functions
4
5 These functions are wrappers for the standard malloc, realloc and free
6 functions.
7
8
9      This program is free software; you can redistribute it and/or modify it
10    under the terms of the GNU General Public License as published by the
11    Free Software Foundation; either version 2, or (at your option) any
12    later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23    In other words, you are welcome to use, share and improve this program.
24    You are forbidden to forbid anyone else to use, share and improve
25    what you give them.   Help stamp out software-hoarding!
26
27 ===============================================================================
28 */
29
30 #if !defined(_NewAlloc_H)
31
32 #define _NewAlloc_H
33
34 #include <memory.h>
35
36 /*
37 -------------------------------------------------------------------------------
38 Clear_realloc - Reallocate a memory block and clear any memory added with
39 out of memory error detection
40
41 -------------------------------------------------------------------------------
42 */
43
44 void *Clear_realloc(void *OldPtr,size_t OldSize,size_t NewSize) ;
45
46 /*
47 -------------------------------------------------------------------------------
48 Safe_realloc - Reallocate a memory block with out of memory error detection
49
50 -------------------------------------------------------------------------------
51 */
52
53 void *Safe_realloc(void *OldPtr,size_t NewSize) ;
54
55 /*
56 -------------------------------------------------------------------------------
57 Safe_calloc - Allocate a block of memory from the application heap, clearing
58 all data to zero and checking for out or memory errors.
59
60 -------------------------------------------------------------------------------
61 */
62
63 void *Safe_calloc(size_t Elements,size_t Size) ;
64
65 /*
66 -------------------------------------------------------------------------------
67 Safe_malloc - Allocate a block of memory from the application heap
68 and checking for out or memory errors.
69
70 -------------------------------------------------------------------------------
71 */
72
73 void *Safe_malloc(size_t Size) ;
74
75 #endif