aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_dump.c
blob: bf2e5d11273c865b9f9a9421998519b0a19922f5 (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
#include "buf.h"
#include "core.h"

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

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

int c_dump( cmd_arg_t *arg )
{
	int i;

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

	for (i=0; i<g_buf->size; i++)
	{
		printf("%02x",(unsigned char)g_buf->buf[i]);
	}
	printf("\n");

	return 0;
}

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