aboutsummaryrefslogblamecommitdiffstats
path: root/cmd/cmd_pos.c
blob: b040511787c225285f3c762906b902baaf7868bb (plain) (tree)
1
2
3
4
5
6
7
8






                             
                  












                                                     
                                

                 





                                          
 
#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;

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

int h_pos( cmd_arg_t *arg )
{
	printf(" - get position in file");
	return 0;
}