Go to the documentation of this file.
27 typedef enum{
false=0,
true=1} Bool;
28 typedef unsigned long MEMORY_TYPE;
31 #define PRINT_DEBUG(C,A) printf("%sdebug : %s (memory adress: %#lX)%s\n",DEBUGCOLOR,C,(MEMORY_TYPE)A,TEXTCOLOR_END);
33 #define PRINT_DEBUG(C,A)
37 #define PRINT_VERBOSE(C) printf("%sverbose : %s function %s [%s line %d]%s\n",VERBOSECOLOR,C,__FUNCTION__,__FILE__,__LINE__,TEXTCOLOR_END);
39 #define PRINT_VERBOSE(C)
42 #define MAX(a,b) ((a>b)?(a):(b))
43 #define MIN(a,b) ((a>b)?(b):(a))
49 void *
Calloc(
size_t nmemb,
size_t size);
70 void FREE(
void **ptr);