f079a1cf552260acd00f75a75ba1e4bba0f2e794
[sdk] / extras / include / dpl.h
1 // dpl.h
2 // see dpl.c
3
4 #ifndef _DPL_H
5 #define _DPL_H 1
6
7 // Debug Print Line Format (_dplf)
8 #ifdef _DPL_ON
9 #define _dplf(...) __dplf(__FILE__, __LINE__, ##__VA_ARGS__)
10 #else
11 #define _dplf(...)
12 #endif
13
14 // Debug Print Channel Line Format (_dpclf)
15 #ifdef _DPL_ON
16 #define _dpclf(...) __dpclf(__FILE__, __LINE__, ##__VA_ARGS__)
17 #else
18 #define _dpclf(...)
19 #endif
20
21 #endif // dpl.h