gc_n64_usb-v3/tool/hexdump.c

14 lines
147 B
C
Raw Normal View History

2015-09-13 06:52:38 -04:00
#include <stdio.h>
void printHexBuf(unsigned char *buf, int n)
{
int i;
for (i=0; i<n; i++) {
printf("%02x ", buf[i]);
}
printf("\n");
}