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

39 lines
728 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>
1989-12-18 15:04:14 +00:00
#if (SEEK_CUR != 1) || (SEEK_SET != 0) || (SEEK_END != 2)
#error SEEK_* values are wrong
#endif
1989-05-30 13:34:25 +00:00
#include "loc_incl.h"
1989-12-18 15:04:14 +00:00
#include <sys/types.h>
off_t _lseek(int fildes, off_t offset, int whence);
1989-05-30 13:34:25 +00:00
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-12-18 15:04:14 +00:00
result = _lseek(fileno(stream), 0, SEEK_CUR);
1989-05-30 13:34:25 +00:00
if ( result == -1 )
return result;
result += (long) adjust;
return result;
}