blob: ebec8c10291a8323083920b137da89665a166ab4 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#include "buf.h"
#include "core.h"
#include "util.h"
#include "libcmd/cmd.h"
#include "libcmd/cmd_parse.h"
extern file_t *g_file;
extern Buf *g_buf;
extern int g_flags;
/*
OPEN <FILENAME>
*/
int c_open( cmd_arg_t *arg )
{
int argc = arg->argc;
char **argv = arg->argv;
int *type = arg->type;
char *fname = NULL;
int fret = 0;
if ( argc != 1 )
{
printf("Neeed one argument %d\n",argc);
return -1;
}
//fname = argv[0];
if (type[0] == CMDT_QSTR)
{
fname = alloc_new_str(argv[0]+1);
fname[strlen(argv[0])-2] = 0x0;
} else {
fname = alloc_new_str(argv[0]);
}
printf("fname %s\n",fname);
fret = file_open_fn( g_file, fname, g_flags ); //!if failure fields could be non empty inside struct
free(fname);fname=NULL;
if ( fret < 0 )
{
printf("Cannot open file %s\n",fname);
return -1;
}
return 0;
}
int h_open( cmd_arg_t *arg )
{
printf("[FILENAME] - open file");
return 0;
}
|