blob: b84902635e6365c52941ca1650bde9c4e38c2c4a (
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
37
38
39
40
41
42
|
#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;
/*
* blk - show block size
* blk <num> - set block size
*/
int c_blk( cmd_arg_t *arg )
{
int argc = arg->argc;
char **argv = arg->argv;
int *type = arg->type;
if ( argc == 0)
{
printf("FILE BLOCK SIZE %u\n", g_file->blk_size );
} else if ( argc == 1 )
{
if ((type[0] == CMDT_INT) || (type[0] == CMDT_HEX))
{
g_file->blk_size = atoi( argv[0] );
g_buf->realloc(g_file->blk_size);
}
} else
{
return -1;
}
return 0;
}
int h_blk( cmd_arg_t *arg )
{
printf("[SIZE] - set block size");
return 0;
}
|