blob: 2b7fbd5fbfb25438d886d1a18679328ae9c75db3 (
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
43
44
45
46
|
#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_resize( cmd_arg_t *arg )
{
int argc = arg->argc;
char **argv = arg->argv;
int *type = arg->type;
int resize;
if ( argc != 1 )
{
printf("Needed one argument\n");
return -1;
}
printf("%d %s\n",type[0],argv[0]);
if ((type[0] != CMDT_INT) && (type[0] != CMDT_HEX) )
{
printf("Unknown type of argument\n");
return -1;
}
resize = atoi( argv[0] );
if (resize < 0)
return -1;
file_resize( g_file, resize );
return 0;
}
int h_resize( cmd_arg_t *arg )
{
printf("[FILESIZE] - resize current file");
return 0;
}
|