Files
sumalibs/libutils/debug.h
2017-10-15 20:41:55 +02:00

26 lines
378 B
C
Executable File

/*
* 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 <stdint.h>
char * int2bin(int64_t i,size_t bits);
#endif /* DEBUG_H_ */