aboutsummaryrefslogtreecommitdiffstats
path: root/airpdcap/airpdcap_debug.c
blob: 6b6125ef5c5802ea1e875ff77c931ace960b5a8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/******************************************************************************/
/*	File includes																					*/
/*																										*/
#include "airpdcap_debug.h"
/*																										*/
/******************************************************************************/

#ifdef	_DEBUG

#ifdef	__cplusplus
extern "C" {
#endif
	void print_debug_line(CHAR *function, CHAR *msg, INT level) {
		if (level<=AIRPDCAP_DEBUG_USED_LEVEL)
			printf("dbg(%d)|(%s) %s\n", level, function, msg);
	}
#ifdef	__cplusplus
}
#endif

#endif