minix/lib/libc/stdio/ftell.c

46 lines
858 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* ftell.c - obtain the value of the file-position indicator of a stream
*/
/* $Header$ */
2010-08-16 19:07:40 +02:00
#include <assert.h>
2005-04-21 16:53:53 +02:00
#include <stdio.h>
#if (SEEK_CUR != 1) || (SEEK_SET != 0) || (SEEK_END != 2)
#error SEEK_* values are wrong
#endif
#include "loc_incl.h"
#include <sys/types.h>
off_t _lseek(int fildes, off_t offset, int whence);
long ftell(FILE *stream)
2010-08-16 19:07:40 +02:00
{
assert(sizeof(long) == sizeof(off_t));
return (long) ftello(stream);
}
off_t ftello(FILE *stream)
2005-04-21 16:53:53 +02:00
{
long result;
int adjust = 0;
if (io_testflag(stream,_IOREADING))
adjust = -stream->_count;
else if (io_testflag(stream,_IOWRITING)
&& stream->_buf
&& !io_testflag(stream,_IONBF))
adjust = stream->_ptr - stream->_buf;
else adjust = 0;
result = _lseek(fileno(stream), (off_t)0, SEEK_CUR);
if ( result == -1 )
return result;
result += (long) adjust;
return result;
}