xmalloc.h File Reference
Go to the source code of this file.
Define Documentation
#define XMALLOC |
( |
type |
|
) |
((type *) xmalloc(sizeof(type))) |
|
#define XMALLOC0 |
( |
type |
|
) |
((type *) xmalloc0(sizeof(type))) |
|
#define XMALLOCD |
( |
type, |
|
|
descr |
|
) |
((type *) xmallocd(sizeof(type),descr)) |
|
#define XMALLOCD0 |
( |
type, |
|
|
descr |
|
) |
((type *) xmallocd0(sizeof(type),descr)) |
|
Function Documentation
void* xcalloc |
( |
size_t |
, |
|
|
size_t |
|
|
) |
|
|
__BEGIN_DECLS void* xmalloc |
( |
size_t |
|
) |
|
|
void* xmalloc0 |
( |
size_t |
|
) |
|
|
void* xmallocd |
( |
size_t |
, |
|
|
char * |
|
|
) |
|
|
void* xmallocd0 |
( |
size_t |
, |
|
|
char * |
|
|
) |
|
|
void* xrealloc |
( |
void * |
, |
|
|
size_t |
|
|
) |
|
|