ack/lang/cem/libcc.ansi/stdio/ftell.c
1989-06-26 10:37:05 +00:00

33 lines
616 B
C

/*
* ftell.c - obtain the value of the file-position indicator of a stream
*/
/* $Header$ */
#include <stdio.h>
#include <sys/file.h>
#include "loc_incl.h"
int lseek(int d, int offset, int whence);
long ftell(FILE *stream)
{
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), 0, L_INCR);
if ( result == -1 )
return result;
result += (long) adjust;
return result;
}