ack/lang/cem/libcc.ansi/stdio/ftell.c

33 lines
616 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* 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);
1989-06-26 10:37:05 +00:00
long ftell(FILE *stream)
1989-05-30 13:34:25 +00:00
{
long result;
1989-06-26 10:37:05 +00:00
int adjust = 0;
1989-05-30 13:34:25 +00:00
1989-06-26 10:37:05 +00:00
if (io_testflag(stream,_IOREADING))
1989-05-30 13:34:25 +00:00
adjust = -stream->_count;
1989-06-26 10:37:05 +00:00
else if (io_testflag(stream,_IOWRITING)
1989-05-30 13:34:25 +00:00
&& stream->_buf
&& !io_testflag(stream,_IONBF))
adjust = stream->_ptr - stream->_buf;
1989-06-26 10:37:05 +00:00
else adjust = 0;
1989-05-30 13:34:25 +00:00
result = lseek(fileno(stream), 0, L_INCR);
if ( result == -1 )
return result;
result += (long) adjust;
return result;
}