X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/a182a680b0f1f434b6fab67e1eba4a3db3b8a141..7504dc50d539f1f9b0b99064f5c7d38e373890fa:/client/util.c diff --git a/client/util.c b/client/util.c index 04daffc2..586d930b 100644 --- a/client/util.c +++ b/client/util.c @@ -104,14 +104,18 @@ void print_hex(const uint8_t * data, const size_t len) { printf("\n"); } void print_hex_break(const uint8_t *data, const size_t len, uint8_t breaks) { - size_t i; - for ( i = 0; i < len; ++i) { + + int rownum = 0; + printf("[%02d] | ", rownum); + for (int i = 0; i < len; ++i) { printf("%02X ", data[i]); // check if a line break is needed - if ( (breaks > 0) && (i > 0) && !(i % breaks) ) - printf("(%d %d)\n", i , breaks); + if ( breaks > 0 && !((i+1) % breaks) && (i+1 < len) ) { + ++rownum; + printf("\n[%02d] | ", rownum); + } } printf("\n"); }