#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>
Documentación de los 'defines'
#define CUSTOM_FREE |
( |
|
x | ) |
CUSTOM_PREFIX(free)(x) |
#define CUSTOM_MALLOC |
( |
|
x | ) |
CUSTOM_PREFIX(malloc)(x) |
#define CUSTOM_MEMALIGN |
( |
|
x, |
|
|
|
y |
|
) |
| CUSTOM_PREFIX(memalign)(x,y) |
#define CUSTOM_REALLOC |
( |
|
x, |
|
|
|
y |
|
) |
| CUSTOM_PREFIX(realloc)(x,y) |
Documentación de las funciones
void CUSTOM_FREE |
( |
void * |
| ) |
|
void* CUSTOM_MALLOC |
( |
size_t |
| ) |
|
void *MYCDECL CUSTOM_MEMALIGN |
( |
size_t |
alignment, |
|
|
size_t |
size |
|
) |
| |
void* CUSTOM_REALLOC |
( |
void * |
, |
|
|
size_t |
|
|
) |
| |
Documentación de las variables