blob: 3db6a70d18bf8495d0b539c440f1a610d67dccf4 (
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
|
#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;
/*
CLOSE
*/
int c_close( cmd_arg_t *arg )
{
int fret = 0;
fret = file_close( g_file );
if ( fret != 0 )
{
printf("Cannot close file\n");
return -1;
}
// clean buf
if ( !g_buf->isempty() )
{
//buf_zero( g_buf );
g_buf->zero();
//buf_free( g_buf );
g_buf->empty();
}
return 0;
}
int h_close( cmd_arg_t *arg )
{
printf(" - close current file");
return 0;
}
|