]> git.sur5r.net Git - cc65/blob - libsrc/common/rewind.c
Updated to use cbm_kernal.inc. Whitespace cleanups
[cc65] / libsrc / common / rewind.c
1 /*
2 ** rewind.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
19 void __fastcall__ rewind (FILE* f)
20 {
21     fseek(f, 0L, SEEK_SET);
22     clearerr(f);
23 }
24
25