windows-nt/Source/XPSP1/NT/net/irda/comm/util/debug.c

26 lines
290 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <wdm.h>
VOID
DumpBuffer(
PUCHAR Data,
ULONG Length
)
{
ULONG i;
for (i=0; i<Length; i++) {
DbgPrint("%02x ",*Data);
Data++;
if (((i & 0xf) == 0) && (i != 0)) {
DbgPrint("\n");
}
}
return;
}