aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_info.c
blob: 8744efe9463dc328145d35d59480446d2bb1a8ea (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
#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;

/*
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;
}