]> pd.if.org Git - pdclib/blob - functions/stdio/fgetpos.c
c97cf0182365e02f0a67ada5f620499484f5f4cd
[pdclib] / functions / stdio / fgetpos.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 int fgetpos( FILE * restrict stream, fpos_t * restrict pos ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     *pos = ftell(stream);
13     return (0);
14 }
15 */