aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_dump.c
blob: 1f6ac4116ed07ed241fc07e481fb0912c2bda31a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include "buf.h"
#include "core.h"

#include "libcmd/cmd.h"
#include "libcmd/cmd_parse.h"

extern file_t *g_file;
extern Buf *g_buf;
extern int g_flags;

int c_dump( cmd_arg_t *arg )
{
	int i;

	if ( g_buf->isempty())
	{
		printf("Buffer to print empty\n");
		return -1;
	}

	for (i=0; i<g_buf->cursize(); i++)
	{
		char c;
		g_buf->getc(i,&c);
		printf("%02x",(unsigned char)c);
	}
	printf("\n");

	return 0;
}

int h_dump( cmd_arg_t *arg )
{
	printf(" - dump data as hex string");
	return 0;
}