blob: 532c43c1dc40ec6b07efe08c58619a2efb082cde (
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
|
#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_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;
}
|