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