File: debug.h

package info (click to toggle)
sipcrack 0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, trixie
  • size: 252 kB
  • sloc: ansic: 2,568; makefile: 53; sh: 1
file content (18 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Copyright (C) 2007  Martin J. Muench <mjm@codito.de> */

#ifndef	SIPCRACK_DEBUG_H
#define SIPCRACK_DEBUG_H

#include <stdio.h>
#include <string.h>
#include <stdarg.h>

#ifdef DEBUG
#define debug(x) ic_debug x;
#else 
#define debug(x) do { } while(1!=1);
#endif

void ic_debug(const char *fmt, ...);

#endif /* SIPCRACK_DEBUG_H */