solo1/util.c

13 wiersze
146 B
C

#include <stdio.h>
void dump_hex(uint8_t * buf, int size)
{
while(size--)
{
printf("%02x ", *buf++);
}
printf("\n");
}