windows-nt/Source/XPSP1/NT/net/irda/comm/util/debug.c
2020-09-26 16:20:57 +08:00

26 lines
290 B
C

#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;
}