2000-08-11 21:51:03 +00:00
|
|
|
/*
|
2014-06-30 09:10:35 +00:00
|
|
|
** rewind.c
|
|
|
|
**
|
|
|
|
** Christian Groessler, 07-Aug-2000
|
|
|
|
*/
|
2000-08-11 21:51:03 +00:00
|
|
|
|
|
|
|
|
2003-11-06 18:04:07 +00:00
|
|
|
|
2000-08-11 21:51:03 +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
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void __fastcall__ rewind (FILE* f)
|
2000-08-11 21:51:03 +00:00
|
|
|
{
|
|
|
|
fseek(f, 0L, SEEK_SET);
|
|
|
|
clearerr(f);
|
|
|
|
}
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
|