diff options
Diffstat (limited to 'src/example/dump.c')
-rw-r--r-- | src/example/dump.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/example/dump.c b/src/example/dump.c index 648aacd..71d153a 100644 --- a/src/example/dump.c +++ b/src/example/dump.c @@ -129,5 +129,10 @@ int main(int argc, char *argv[]) printf("Got %d blocks\n", count); + for(f = 0; f < count; f++) + { + printf("Block %d len %d\n", f, block[f]->len); + } + CompareEnds(block, count); } |