Browse Source

More debug output

master
JustAnotherArchivist 1 year ago
parent
commit
2e579964f9
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      warc-dump-responses.c

+ 4
- 0
warc-dump-responses.c View File

@@ -1,4 +1,5 @@
#define _GNU_SOURCE
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
@@ -38,6 +39,9 @@ int main(int argc, char* argv[]) {
bufp = buf;
checkstate:
DEBUG_PRINTF("Have %zu bytes of buffer (at %p)\n", n, (void*)bufp);
DEBUG_PRINTF("Beginning of buffer: ");
for (int i = 0; i < 64; ++i) DEBUG_PRINTF(isprint(*(bufp + i)) ? "%c" : "\\x%02x", *(bufp + i) & 0xFF);
DEBUG_PRINTF("\n");
if (n == 0) {
break;
}


Loading…
Cancel
Save