1 | /* |
---|
2 | * $Id$ |
---|
3 | * |
---|
4 | * Header file of mr_mem: a set of function manipulating memory |
---|
5 | * Provided under the GPL v2 |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef MR_MEM_H |
---|
9 | #define MR_MEM_H |
---|
10 | |
---|
11 | #ifndef _GNU_SOURCE |
---|
12 | #define _GNU_SOURCE |
---|
13 | #endif |
---|
14 | #include <stdarg.h> |
---|
15 | #include <stdio.h> |
---|
16 | |
---|
17 | /* functions (public methods) */ |
---|
18 | |
---|
19 | #define mr_free(x) mr_free_int((void **)&x,__LINE__,__FILE__) |
---|
20 | #define mr_allocstr(x,y) mr_allocstr_int(x,y,__LINE__,__FILE__) |
---|
21 | #define mr_asprintf(x,y,args...) mr_asprintf_int(x,__LINE__,__FILE__,y,## args) |
---|
22 | #define mr_getline(x,y,z) mr_getline_int(x,y,z,__LINE__,__FILE__) |
---|
23 | #define mr_malloc(x) mr_malloc_int((size_t)x,__LINE__,__FILE__) |
---|
24 | #define mr_setenv(x,y) mr_setenv_int(x,y,__LINE__,__FILE__) |
---|
25 | #define mr_strcat(x,y,args...) mr_strcat_int((char **)&x, __LINE__,__FILE__, y,## args); |
---|
26 | |
---|
27 | /* Internal function bringing debuging info |
---|
28 | * called indirectly through macros */ |
---|
29 | extern inline void mr_free_int(void **allocated, int line, char *file); |
---|
30 | extern inline void mr_allocstr_int(char *alloc, const char *orig, int line, char *file); |
---|
31 | extern inline void mr_asprintf_int(char **alloc, int line, char *file, const char *fmt, ...); |
---|
32 | extern inline void mr_getline_int(char **lineptr, size_t *n, FILE *stream, int line, char *file); |
---|
33 | extern inline void *mr_malloc_int(size_t size, int line, char *file); |
---|
34 | extern inline void mr_setenv_int(const char *name, const char *value, int line, char *file); |
---|
35 | extern void mr_strcat_int(char **in, int line, char *file, const char *fmt, ...); |
---|
36 | |
---|
37 | #endif /* MR_MEM_H */ |
---|