summaryrefslogtreecommitdiff
path: root/cmd/cmd_info.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2016-05-15 22:30:26 +0100
committerFreeArtMan <dos21h@gmail.com>2016-05-15 22:30:26 +0100
commit852c7ad1af2e3283425dccd79b0923b7df12a388 (patch)
treef97e6498f87380091bf6848d06482bf12c258b63 /cmd/cmd_info.c
parent44dedb90f005bb0de9bddbd592a5c78f28bc67d1 (diff)
downloadihe-852c7ad1af2e3283425dccd79b0923b7df12a388.tar.gz
ihe-852c7ad1af2e3283425dccd79b0923b7df12a388.zip
Moved to new cmd.
Diffstat (limited to 'cmd/cmd_info.c')
-rw-r--r--cmd/cmd_info.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/cmd/cmd_info.c b/cmd/cmd_info.c
new file mode 100644
index 0000000..b06f8bc
--- /dev/null
+++ b/cmd/cmd_info.c
@@ -0,0 +1,45 @@
+#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 );
+ }
+
+ if ( g_buf == NULL )
+ {
+ printf("buffer not initialised\n");
+ } else
+ {
+ printf("BUF:\n");
+ printf("ADDR : %p\n", g_buf->buf);
+ printf("SIZE : %d\n", g_buf->size);
+ printf("BUFSIZE: %d\n", g_buf->buf_size);
+ }
+
+ return 0;
+} \ No newline at end of file