File: debug.h

package info (click to toggle)
sumalibs 1.0.36-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 412 kB
  • sloc: ansic: 3,154; lex: 174; sh: 45; makefile: 26
file content (25 lines) | stat: -rwxr-xr-x 378 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * 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_ */