c_macro.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef _C_MACRO_H
00034 #define _C_MACRO_H
00035
00036 #include <stdlib.h>
00037 #include <string.h>
00038
00039 #ifdef malloc
00040 #undef malloc
00041 #endif
00042 #define malloc(x) DO_NOT_CALL_MALLOC__USE_C_MALLOC_INSTEAD
00043
00044 #ifdef calloc
00045 #undef calloc
00046 #endif
00047 #define calloc(x,y) DO_NOT_CALL_CALLOC__USE_C_CALLOC_INSTEAD
00048
00049 #ifdef realloc
00050 #undef realloc
00051 #endif
00052 #define realloc(x,y) DO_NOT_CALL_REALLOC__USE_C_REALLOC_INSTEAD
00053
00054 #ifdef dirname
00055 #undef dirname
00056 #endif
00057 #define dirname(x) DO_NOT_CALL_MALLOC__USE_C_DIRNAME_INSTEAD
00058
00059 #ifdef basename
00060 #undef basename
00061 #endif
00062 #define basename(x) DO_NOT_CALL_MALLOC__USE_C_BASENAME_INSTEAD
00063
00064 #ifdef strdup
00065 #undef strdup
00066 #endif
00067 #define strdup(x) DO_NOT_CALL_STRDUP__USE_C_STRDUP_INSTEAD
00068
00069 #define INT_TO_POINTER(i) (void *) i
00070 #define POINTER_TO_INT(p) *((int *) (p))
00071
00072
00073 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
00074
00075
00076 #define ZERO_STRUCTP(x) do { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); } while(0)
00077
00078
00079 #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0)
00080
00081
00082 #define MIN(a,b) ((a) < (b) ? (a) : (b))
00083
00084
00085 #define MAX(a,b) ((a) < (b) ? (b) : (a))
00086
00087
00088 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
00089
00090
00091
00092
00093 #endif
00094