mirror of
https://github.com/raphnet/gc_n64_usb-v3
synced 2024-11-14 05:05:07 -05: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");
|
||
|
}
|
||
|
|
||
|
|