]> git.sur5r.net Git - cc65/blob - libsrc/common/fsetpos.c
Resolved conflict and removed adaptation for strpbrk for time being.
[cc65] / libsrc / common / fsetpos.c
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
19 int __fastcall__ fsetpos (FILE* f, const fpos_t *pos)
20 {
21     return fseek (f, (fpos_t)*pos, SEEK_SET);
22 }
23
24