]> pd.if.org Git - pdclib/blob - functions/stdio/ftell.c
f4efecdf7973ce1ae10d69b99f841f85566af115
[pdclib] / functions / stdio / ftell.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 long ftell( FILE * stream ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     return (stream->bufStartR + (stream->upto - stream->fbuf));
13 }
14 */