/* * debug.h * * Created on: 4 sept. 2012 * Author: coissac */ #ifndef DEBUG_H_ #define DEBUG_H_ #ifdef DEBUG #undef DEBUG #endif #ifdef DEBUG_ON #define DEBUG(format,...) fprintf(stderr,"[%s:%d] : "format"\n",__FILE__,__LINE__,__VA_ARGS__) #else #define DEBUG(format,...) #endif #include char * int2bin(int64_t i,size_t bits); #endif /* DEBUG_H_ */