mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-10-31 15:45:09 -04:00
14 lines
147 B
C
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");
|
|
}
|
|
|
|
|