From 3e187c094f12ef41ea6de2f55d128c3e037b5c12 Mon Sep 17 00:00:00 2001 From: FreeArtMan Date: Wed, 25 Sep 2019 19:17:09 +0100 Subject: Untested version, recompiled with new buf library and with c+ --- cmd/cmd_dump.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'cmd/cmd_dump.c') diff --git a/cmd/cmd_dump.c b/cmd/cmd_dump.c index bf2e5d1..999822e 100644 --- a/cmd/cmd_dump.c +++ b/cmd/cmd_dump.c @@ -5,22 +5,24 @@ #include "libcmd/cmd_parse.h" extern file_t *g_file; -extern buf_t *g_buf; +extern Buf *g_buf; extern int g_flags; int c_dump( cmd_arg_t *arg ) { int i; - if ( g_buf->buf == NULL) + if ( g_buf->isempty()) { printf("Buffer to print empty\n"); return -1; } - for (i=0; isize; i++) + for (i=0; isize(); i++) { - printf("%02x",(unsigned char)g_buf->buf[i]); + char c; + g_buf->getc(i,&c); + printf("%02x",(unsigned char)c); } printf("\n"); -- cgit v1.2.3