2000-08-11 21:53:56 +00:00
|
|
|
/*
|
|
|
|
* fsetpos.c
|
|
|
|
*
|
|
|
|
* Christian Groessler, 07-Aug-2000
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-11-06 18:04:07 +00:00
|
|
|
|
2000-08-11 21:53:56 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
2003-11-06 18:04:07 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
2013-05-09 11:56:54 +00:00
|
|
|
/* Code */
|
2003-11-06 18:04:07 +00:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int __fastcall__ fsetpos (FILE* f, const fpos_t *pos)
|
2000-08-11 21:53:56 +00:00
|
|
|
{
|
|
|
|
return fseek (f, (fpos_t)*pos, SEEK_SET);
|
|
|
|
}
|
|
|
|
|
2003-11-06 18:04:07 +00:00
|
|
|
|