aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/cmd_pos.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/cmd_pos.c')
-rw-r--r--cmd/cmd_pos.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/cmd/cmd_pos.c b/cmd/cmd_pos.c
new file mode 100644
index 0000000..845d69d
--- /dev/null
+++ b/cmd/cmd_pos.c
@@ -0,0 +1,25 @@
+#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;
+
+int c_pos( cmd_arg_t *arg )
+{
+ int fret = 0;
+
+ fret = file_pos( g_file );
+ if ( fret < 0)
+ {
+ printf("Cannot get file position\n");
+ return -1;
+ }
+
+ printf("POS:%d\n",fret);
+
+ return 0;
+} \ No newline at end of file