1 /*
2 ** fsetpos.c
3 **
4 ** Christian Groessler, 07-Aug-2000
5 */
6 
7 
8 
9 #include <stdio.h>
10 
11 
12 
13 /*****************************************************************************/
14 /*                                   Code                                    */
15 /*****************************************************************************/
16 
17 
18 
fsetpos(FILE * f,const fpos_t * pos)19 int __fastcall__ fsetpos (FILE* f, const fpos_t *pos)
20 {
21     return fseek (f, (fpos_t)*pos, SEEK_SET);
22 }
23 
24 
25