1
0
mirror of https://github.com/raphnet/gc_n64_usb-v3 synced 2024-08-13 17:03:49 -04:00
gc_n64_usb-v3/tool/hexdump.c
2015-09-13 06:52:38 -04:00

14 lines
147 B
C

#include <stdio.h>
void printHexBuf(unsigned char *buf, int n)
{
int i;
for (i=0; i<n; i++) {
printf("%02x ", buf[i]);
}
printf("\n");
}