blob: 4a899b2feeec11ab6d5d066ab5e67a3f230093c9 (
plain)
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
26
27
28
|
/* See the file COPYING for licensing information. */
#define hd(p, l) { int i; \
for (i = 1; i <= l; i++) { \
printf ("%02x ", p[i-1]); \
if (i % 8 == 0) printf (" "); \
if (i % 16 == 0) printf ("\n"); } \
printf ("\n"); }
#if defined (__cplusplus)
extern "C" {
#endif
struct rs_packet;
struct rs_attr;
void rs_dump_packet (const struct rs_packet *pkt);
void rs_dump_attr (const struct rs_attr *attr);
int _rs_debug (const char *fmt, ...);
#if defined (DEBUG)
#define rs_debug(x) _rs_debug x
#else
#define rs_debug(x) do {;} while (0)
#endif
#if defined (__cplusplus)
}
#endif
|