aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_info.c
blob: 01f58f6d88d4044f601cc78652590106ae837fe0 (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 *g_buf;
extern int g_flags;

/*
FILE
*/
int c_info(  cmd_arg_t *arg  )
{

	if ( g_file == NULL )
	{
		printf("no opened files\n");
	} else
	{
		printf("FILE INFO:\n");
		printf("NAME    : %s\n", g_file->filename );
		printf("FD      : %d\n", g_file->fd );
		printf("FLAGS   : 0x%08x\n", g_file->flags );
		printf("MODE    : 0x%08x\n", g_file->mode );
		printf("OFFSET  : %zd\n", g_file->offset );
		printf("POSITION: %ld\n", g_file->position );
		printf("SIZE    : %zd\n", g_file->size );
		printf("BLOCK   : %u\n", g_file->blk_size );
	}

	return 0;
}

int h_info( cmd_arg_t *arg )
{
	printf(" - show running file info");
	return 0;
}